Last active
September 24, 2017 14:38
-
-
Save Gizmodo/63aa6945c2c0d3f8d99f013f6f21e4e6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://github.com/BrianOdisho/SimpleNewsReader | |
https://github.com/vpaliyX/Melophile | |
https://android-tools.ru/coding/otmena-zadachi-v-asynctask/ | |
https://blog.aritraroy.in/20-awesome-open-source-android-apps-to-boost-your-development-skills-b62832cf0fa4 | |
https://blog.mindorks.com/how-to-learn-android-development-f33dd6dba40d | |
https://rongi.github.io/kotlin-blog/rxjava/rx/2017/08/01/error-handling-in-rxjava.html | |
https://habrahabr.ru/post/332642/ Validator | |
https://blog.aritraroy.in/20-awesome-open-source-android-apps-to-boost-your-development-skills-b62832cf0fa4 | |
RxBindings | |
Turns Android UI events into RxJava observables: | |
Button button = (Button) | |
findViewById(R.id.button); | |
RxView.clicks(button).subscribe(x -> { | |
// do work here | |
}); | |
android { | |
defaultConfig { | |
applicationId "com.android.abi.myapplication" | |
minSdkVersion 17 | |
targetSdkVersion 25 | |
ndk { | |
abiFilters "armeabi-v7a", "x86" | |
} | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment