Skip to content
darylsze edited this page Aug 27, 2017 · 4 revisions

Welcome to the RxKotlinStarter-Quick-N-Fast wiki!

Usage:

  1. Clone project
  2. Open it with Android Studio
  3. Refactor package name to your new project package name.
  4. Delete 'Demo' directory.
  5. 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.

Known issue:

  1. 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'
    }

Remarks:

  • For any issue, please create an issue
  • For any new feature, please create pull request or open an issue. I will response back ASAP
Clone this wiki locally