-
Notifications
You must be signed in to change notification settings - Fork 1
Intro Dependencies
The goal of this project is to demonstrate how some modern techniques can be used in Android Development.
-
MVP / Clean Architecture Pattern
-
Dagger2
-
Retrofit2
-
RxJava
-
Retrolambda
-
Butterknife
dependencies { //Support compile 'com.android.support:appcompat-v7:23.1.1' compile 'com.android.support:support-v4:23.1.1' compile 'com.android.support:recyclerview-v7:23.1.1' compile 'com.android.support:design:23.1.1' compile 'com.android.support:cardview-v7:23.1.1'
// Retrofit compile 'com.squareup.retrofit2:retrofit:2.0.0' compile 'com.squareup.retrofit2:converter-gson:2.0.0' compile 'com.squareup.retrofit2:adapter-rxjava:2.0.0'
compile 'com.squareup.okhttp3:logging-interceptor:3.2.0' compile 'com.google.code.gson:gson:2.4'
//RxJava compile 'io.reactivex:rxandroid:1.0.1' compile 'io.reactivex:rxjava:1.0.14' compile 'com.jakewharton.rxbinding:rxbinding:0.3.0'
compile 'javax.annotation:jsr250-api:1.0'
//Dagger compile 'com.google.dagger:dagger:2.0' apt 'com.google.dagger:dagger-compiler:2.0'
//Butterknife compile 'com.jakewharton:butterknife:7.0.1'
}