An Kotlin MVP Boilerplate to save me having to create the same project over from scratch every time! :)
It provides a generator to create and maintain a android application based on the latest frameworks and patterns used by the community.
Stack:
- Kotlin
 - RxJava and RxAndroid
 - Retrofit / OkHttp
 - Gson
 - Dagger 2
 - Butterknife
 - Google Play Services
 - Timber
 - Glide 3
 - Stetho
 - Espresso for UI tests
 - Robolectric for framework specific unit tests
 - Mockito
 
First, install Yeoman and generator-kotlin-android using npm (we assume you have pre-installed node.js).
npm install -g yo
npm install -g generator-kotlin-androidThen generate your new project:
mkdir NewApp
cd NewApp
yo kotlin-androidIf you found this repo helpful or you learned something from the source code and want to thank me, consider buying me a cup of ☕
Apache-2.0 © Ravindra Kumar

