android studio 常用的库

1.recyclerView

compile 'com.android.support:recyclerview-v7:26.0.0-alpha1'
2.cardView

compile 'com.android.support:cardview-v7:26.0.0-alpha1'
3.butterknife

compile 'com.jakewharton:butterknife:8.4.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.4.0'
4.rxjava

compile 'io.reactivex.rxjava2:rxjava:2.0.7'
compile 'io.reactivex.rxjava2:rxandroid:2.0.1'
compile 'org.reactivestreams:reactive-streams:1.0.0'
5.rxview

compile 'com.jakewharton.rxbinding2:rxbinding:2.0.0'
6.retrofit2

compile 'com.squareup.retrofit2:retrofit:2.3.0'
compile 'com.squareup.retrofit2:adapter-rxjava2:2.3.0'
compile 'com.squareup.retrofit2:converter-scalars:2.1.0'
compile 'com.squareup.retrofit2:converter-gson:2.1.0'

7.okhttp

compile 'com.squareup.okhttp3:okhttp:3.4.1'
compile 'com.squareup.okhttp3:logging-interceptor:3.4.1'
8.gson

compile 'com.google.code.gson:gson:2.8.1'
9.utilcode (工具类的加载)

compile 'com.blankj:utilcode:1.8.2'
10.picasso (图片加载)

compile 'com.squareup.picasso:picasso:2.5.2'
11.lombok (使用注释,减少get/set代码的编写)

compile 'javax.annotation:javax.annotation-api:1.2'
compile 'org.projectlombok:lombok:1.16.18'

12.fastjson

compile 'com.alibaba:fastjson:1.2.24'

你可能感兴趣的:(android studio 常用的库)