2021-04-24 18:12:23 +08:00
|
|
|
//****************************************
|
|
|
|
|
//********* lib_common 的配置文件 **********
|
|
|
|
|
//****************************************
|
|
|
|
|
|
2023-08-20 20:23:09 +08:00
|
|
|
plugins {
|
|
|
|
|
alias(libs.plugins.library)
|
|
|
|
|
alias(libs.plugins.kotlin)
|
|
|
|
|
alias(libs.plugins.hilt)
|
|
|
|
|
id "kotlin-kapt"
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-10 23:31:07 +08:00
|
|
|
apply from: '../base_lib.gradle'
|
2021-04-24 18:12:23 +08:00
|
|
|
|
|
|
|
|
import com.quyunshuo.androidbaseframemvvm.buildsrc.*
|
|
|
|
|
|
|
|
|
|
android {
|
|
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
|
resValue "string", "BUGLY_APP_ID", SDKKeyConfig.BUGLY_APP_ID
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
buildFeatures {
|
|
|
|
|
viewBinding = true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
resourcePrefix "common_"
|
2022-05-18 23:16:27 +08:00
|
|
|
namespace 'com.quyunshuo.androidbaseframemvvm.common'
|
2021-04-24 18:12:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
implementation fileTree(dir: "libs", include: ["*.jar"])
|
|
|
|
|
|
|
|
|
|
api project(path: ':lib_base')
|
|
|
|
|
|
2021-05-25 17:47:55 +08:00
|
|
|
api DependencyConfig.JetPack.HiltCore
|
|
|
|
|
|
2021-04-24 18:12:23 +08:00
|
|
|
kapt DependencyConfig.GitHub.ARouteCompiler
|
|
|
|
|
kapt DependencyConfig.GitHub.EventBusAPT
|
|
|
|
|
kapt DependencyConfig.GitHub.AutoServiceAnnotations
|
2021-05-25 17:47:55 +08:00
|
|
|
kapt DependencyConfig.JetPack.HiltApt
|
2021-05-25 16:03:03 +08:00
|
|
|
kapt DependencyConfig.JetPack.LifecycleCompilerAPT
|
2021-04-24 18:12:23 +08:00
|
|
|
}
|