12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- apply plugin: 'com.android.library'
- apply from: '../dependencies.gradle'
- android {
- //other from dependencies.gradle
- defaultConfig {
- }
- }
- dependencies {
- //from dependencies.gradle
- api project(':matisse_v0.5.3-beta')
- //Androidx Jetpack最新的startUp组件
- api('androidx.startup:startup-runtime:1.0.0')
- api 'com.squareup.retrofit2:adapter-rxjava2:2.6.2'
- api 'com.squareup.retrofit2:converter-gson:2.9.0'
- api 'io.reactivex.rxjava2:rxjava:2.2.13'
- api 'io.reactivex.rxjava2:rxandroid:2.1.1'
- //okhttp
- implementation("com.squareup.okhttp3:okhttp:4.9.0")
- implementation("com.squareup.okhttp3:logging-interceptor:4.9.0")
- //retrofit
- api("com.squareup.retrofit2:retrofit:2.9.0")
- implementation("com.squareup.retrofit2:converter-gson:2.9.0")
- //gson
- api("com.google.code.gson:gson:2.8.6")
- //glide
- api 'com.github.bumptech.glide:glide:4.11.0'
- kapt 'com.github.bumptech.glide:compiler:4.11.0'
- api 'jp.wasabeef:glide-transformations:4.3.0'
- //coil
- api("io.coil-kt:coil:0.13.0")
- //com.shanp.common.utils
- api 'com.blankj:utilcodex:1.30.4'
- //腾讯的key-value
- implementation("com.tencent:mmkv-static:1.2.1")
- //今日头条的适配方案
- api 'me.jessyan:autosize:1.2.1'
- // // 高效加载字体库
- // api 'uk.co.chrisjenx:calligraphy:2.3.0'
- }
|