-
Notifications
You must be signed in to change notification settings - Fork 3
Home
darylsze edited this page Aug 27, 2017
·
4 revisions
Welcome to the RxKotlinStarter-Quick-N-Fast wiki!
- Clone project
- Open it with Android Studio
- Refactor package name to your new project package name.
- Delete 'Demo' directory.
- That's it. Start adding any new activity as normal practise.
This is a project focuses on RxAndroid and RxKotlin (and mainly for Kotlin, 100% of code are written in Kotlin)*** with lots of libraries for Kotlin pre-loaded. Please ensure you have at least basic understanding to these frameworks. Otherwise, it is impossible to start from it.
- Gradle shows "Failed to resolve: com.google.android:android:x.y.z" for latest Android Studio 3.0 Canary Preview.
Simple Fix: exclude google module from ANY Anko dependenc(ies). For example:
compile("org.jetbrains.anko:anko:$anko_version") {
exclude group: 'com.google.android', module: 'android'
}
- For any issue, please create an issue
- For any new feature, please create pull request or open an issue. I will response back ASAP
Copyright @2017, darylsze. All right reserved.