【Android 學(xué)習(xí)記錄】分享開發(fā)過程中常用的依賴 第一期
做一個備份,畢竟是自己從三四年前開始一點一點積攢的一部分。
對于初學(xué)者,這些足夠使用了。
//控件的依賴 包含RecyclerView NavigationView 很多控件
implementation?'com.android.support:design:30.0.0'
implementation 'com.android.support:design:29.0.2'
implementation 'com.android.support:design:29.+'
//Recyclerview 列表
implementation 'androidx.recyclerview:recyclerview:1.1.0'
//如果是androidx,使用以下依賴,后續(xù)項目全部使用androidx依賴(設(shè)計質(zhì)感,卡片布局)
implementation 'com.google.android.material:material:1.2.0-alpha02'
//Glide 4.x
implementation 'com.github.bumptech.glide:glide:3.7.0'
implementation 'com.github.bumptech.glide:glide:4.11.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
//輪播圖
implementation 'com.youth.banner:banner:1.4.10'
//框架
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
//Gson 庫
implementation 'com.google.code.gson:gson:2.6.2'
// OKHttp 網(wǎng)絡(luò)獲取依賴
implementation 'com.squareup.okhttp3:okhttp:4.9.0'
//上下拉 刷新的依賴
implementation 'com.scwang.smartrefresh:SmartRefreshLayout:1.1.2'
//快速實現(xiàn)Android動態(tài)權(quán)限框架Grantor
compile 'com.github.dfqin:grantor:2.5'
//retrofit 網(wǎng)絡(luò)獲取依賴
implementation 'com.squareup.retrofit2:retrofit:2.4.0'
implementation 'com.squareup.retrofit2:converter-gson:2.4.0'
// 必要依賴,解析json字符所用
implementation 'com.squareup.retrofit2:adapter-rxjava2:2.4.0'
// 必要依賴,和Rxjava結(jié)合必須用到,下面會提到
implementation "io.reactivex.rxjava2:rxjava:2.1.3"
// 必要rxjava2依賴
implementation "io.reactivex.rxjava2:rxandroid:2.0.1"
// 必要rxandrroid依賴,切線程時需要用到
//retrofit攔截器
implementation 'com.squareup.okhttp3:logging-interceptor:3.1.2'
// 打印日志
implementation 'com.orhanobut:logger:2.1.0'
//butterknife黃油刀
implementation 'com.jakewharton:butterknife:10.2.3'
annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.3'
//Android開源庫V - Layout:淘寶、天貓都在用的UI框架,趕緊用起來吧!
compile ('com.alibaba.android:vlayout:1.2.8@aar') {
? ?transitive = true
}