https://github.com/devmike01/turner
https://github.com/devmike01/turner
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/devmike01/turner
- Owner: devmike01
- Created: 2024-07-22T02:31:16.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-01-26T22:31:45.000Z (11 months ago)
- Last Synced: 2025-02-05T15:19:36.905Z (10 months ago)
- Language: Kotlin
- Size: 2.92 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Turner
### How to
##### Step 1. Add the JitPack repository to your build file
Add it in your project's root `build.gradle`
```groovy
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
```
If your gradle file is written in Kotlin(i.e `build.gradle`), use this
```kotlin
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven(url ="https://jitpack.io")
}
}
```
##### Step 2. Add `Turner` to your project
```groovy
dependencies {
implementation 'com.github.devmike01:Turner:0.1.1-alpha01'
}
```
That's it!
### Demo

### Contributions
Feel free to submit PRs
### Known issue(s)
- Turner's state is lost when device's screen is rotated