Butterknife步骤 <一键生成绑定>
implementation 'com.jakewharton:butterknife:9.0.0-rc1'
annotationProcessor 'com.jakewharton:butterknife-compiler:9.0.0-rc1'
retrofit2.0 <网络请求框架>
//配置retrofit2.0
compile 'com.squareup.retrofit2:retrofit:+'
compile 'com.squareup.retrofit2:converter-gson:+'
//配置支持Rxjava2
compile 'com.squareup.retrofit2:adapter-rxjava2:+'
compile 'io.reactivex.rxjava2:rxjava:+'
compile 'io.reactivex.rxjava2:rxandroid:+'
Fresco <图片框架>
implementation 'com.facebook.fresco:fresco:1.9.0'
// 支持 GIF 动图,需要添加
implementation 'com.facebook.fresco:animated-gif:1.9.0'
//RecyclerView <列表展示框架>
implementation 'com.android.support:recyclerview-v7:27.1.1'
//EventBus依赖库:
//EventBus依赖库:
implementation 'org.greenrobot:eventbus:3.1.1'
implementation 'com.jakewharton:butterknife:9.0.0-rc1'
annotationProcessor 'com.jakewharton:butterknife-compiler:9.0.0-rc1'
//配置retrofit2.0
compile 'com.squareup.retrofit2:retrofit:+'
compile 'com.squareup.retrofit2:converter-gson:+'
//rxjava
compile 'com.squareup.retrofit2:adapter-rxjava2:+'
compile 'io.reactivex.rxjava2:rxjava:+'
compile 'io.reactivex.rxjava2:rxandroid:+'
//fresco
implementation 'com.facebook.fresco:fresco:1.9.0'
// 支持 GIF 动图,需要添加
implementation 'com.facebook.fresco:animated-gif:1.9.0'
//recycler
implementation 'com.android.support:recyclerview-v7:27.1.1'
//EventBus依赖库:
implementation 'org.greenrobot:eventbus:3.1.1'
//okhttp的log信息
implementation 'com.squareup.okhttp3:logging-interceptor:3.4.1'