https://github.com/qk7b/android-boilerplate
A set of code bunches I don't want to write anymore !
https://github.com/qk7b/android-boilerplate
android android-boilerplate android-lib android-library kotlin kotlin-android kotlin-library
Last synced: 30 days ago
JSON representation
A set of code bunches I don't want to write anymore !
- Host: GitHub
- URL: https://github.com/qk7b/android-boilerplate
- Owner: qk7b
- License: apache-2.0
- Created: 2019-01-23T12:18:51.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-11-10T08:51:58.000Z (over 5 years ago)
- Last Synced: 2025-07-03T19:44:44.840Z (11 months ago)
- Topics: android, android-boilerplate, android-lib, android-library, kotlin, kotlin-android, kotlin-library
- Language: Kotlin
- Homepage:
- Size: 161 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
Android Boilerplate
===

_TL;DR A set of code bunches I don't want to write anymore !_
## Elements
- [Network](network/README.md) A `NetworkResponse` item for safe network call (no more try catch)
- [Network-Retrofit-Converter](network_retrofit_converter/README.md) A helper for [Retrofit](https://square.github.io/retrofit/) usage with [Network](network/README.md)
- [Network-Okhttp3-Interceptor](network_okhttp3_interceptors/README.md) A helper for the interceptors for [okhttp3](https://square.github.io/okhttp/) (like to set headers)
- [Recycler_View](recyclerview/README.md) Helpers for [recyclerview](https://square.github.io/okhttp/) (like simple adapter)
- [UseCase](usecase/README.md) A simple `UseCase` interface
## Install
Add it over [jitpack.io](https://jitpack.io/docs/ANDROID/)
In the *project* `build.gradle`
```gradle
allprojects {
repositories {
jcenter()
// Maybe google()
maven { url "https://jitpack.io" }
}
}
```
In the *module* `build.gradle`
```gradle
dependencies {
implementation 'com.github.quentin7b.android-boilerplate:1.1.0'
}
```
## License
Project is under [Apache 2](LICENSE)
Feel free to improve by opening an issue or a pull request