Android studioでよく使われるライブラリ

2697 ワード

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'