常用库#
-
RecyclerView##
compile 'com.android.support:recyclerview-v7:24.2.0' -
rxjava##
compile 'io.reactivex:rxjava:1.1.0' -
rxandroid##
compile 'io.reactivex:rxandroid:1.1.0' -
butterknife##
compile 'com.jakewharton:butterknife:7.0.1' -
gson##
compile 'com.google.code.gson:gson:2.6.2' -
retrofit2##
compile 'com.squareup.retrofit2:converter-gson:2.0.0-beta4' compile 'com.squareup.retrofit2:adapter-rxjava:2.0.0-beta4' -
大图加载##
compile 'com.github.piasy:BigImageViewer:1.1.1' -
Android 工具集合库
compile 'com.marshalchen.ultimateandroid:ultimateandroid:0.10.1' -
Dagger 库
project gradle
dependencies {
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
}
app gradle
apply plugin: 'com.neenbedankt.android-apt' // 注释处理
dependencies {
compile 'com.google.dagger:dagger:2.0.2' // dagger2
compile 'com.google.dagger:dagger-compiler:2.0.2' // dagger2
provided 'javax.annotation:jsr250-api:1.0' // Java标注
}
-
OkHttp3##
compile 'com.squareup.okhttp3:mockwebserver:3.6.0'
常用控件#
-
SwipeRefreshLayout##
android.support.v4.widget.SwipeRefreshLayout