recyclerview包
compile 'com.android.support:recyclerview-v7:25.0.0'
RxJava
compile 'io.reactivex:rxjava:1.1.8'
compile 'io.reactivex:rxandroid:1.2.1'
Retrofit
compile 'com.squareup.retrofit2:retrofit:2.0.0-beta4'
//retrofit json转换库
compile 'com.squareup.retrofit2:converter-gson:2.0.0-beta4'
//retrofit rxjava支持库
compile 'com.squareup.retrofit2:adapter-rxjava:2.0.0-beta4'
//json解析
compile 'com.google.code.gson:gson:2.6.2'
OkHttp
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.5'
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5'
butterKnife配置,添加于工程build文件夹下的dependencies类中
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
butterKnife配置,添加于module中build文件夹下的开头出
apply plugin: 'android-apt'
butterKnife配置,添加于module中的build文件夹下dependencies类中
compile 'com.jakewharton:butterknife:8.4.0'
apt 'com.jakewharton:butterknife-compiler:8.4.0'
XLog 日志
compile 'com.elvishew:xlog:1.1.0'
glide:图片加载:
compile 'com.github.bumptech.glide:glide:3.7.0'
gson解析包:
compile 'com.google.code.gson:gson:2.8.2'
网友评论