2021-04-24 18:12:23 +08:00
|
|
|
//****************************************
|
|
|
|
|
//*********** lib_net 的配置文件 ***********
|
|
|
|
|
//****************************************
|
|
|
|
|
|
|
|
|
|
apply from: '../buildGradleScript/base/base_lib.gradle'
|
2021-05-25 17:47:55 +08:00
|
|
|
apply plugin: 'dagger.hilt.android.plugin'
|
2021-04-24 18:12:23 +08:00
|
|
|
|
|
|
|
|
import com.quyunshuo.androidbaseframemvvm.buildsrc.*
|
|
|
|
|
|
|
|
|
|
android {
|
|
|
|
|
resourcePrefix "net_"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
implementation fileTree(dir: "libs", include: ["*.jar"])
|
|
|
|
|
|
|
|
|
|
implementation project(path: ':lib_base')
|
|
|
|
|
|
|
|
|
|
api DependencyConfig.GitHub.OkHttp
|
|
|
|
|
api DependencyConfig.GitHub.OkHttpInterceptorLogging
|
|
|
|
|
api DependencyConfig.GitHub.Retrofit
|
|
|
|
|
api DependencyConfig.GitHub.RetrofitConverterGson
|
2021-05-25 17:47:55 +08:00
|
|
|
api DependencyConfig.JetPack.HiltCore
|
2021-04-24 18:12:23 +08:00
|
|
|
|
|
|
|
|
kapt DependencyConfig.GitHub.AutoServiceAnnotations
|
2021-05-25 17:47:55 +08:00
|
|
|
kapt DependencyConfig.JetPack.HiltApt
|
|
|
|
|
kapt DependencyConfig.JetPack.HiltAndroidx
|
2021-04-24 18:12:23 +08:00
|
|
|
}
|