Skip to content

Instantly share code, notes, and snippets.

@Gizmodo
Last active September 24, 2017 14:38
Show Gist options
  • Save Gizmodo/63aa6945c2c0d3f8d99f013f6f21e4e6 to your computer and use it in GitHub Desktop.
Save Gizmodo/63aa6945c2c0d3f8d99f013f6f21e4e6 to your computer and use it in GitHub Desktop.
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