保证能relase打包成功
This commit is contained in:
parent
e051962bd8
commit
6d741d9ce5
|
|
@ -32,8 +32,4 @@ android {
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||||||
|
|
||||||
// ================================Test相关===================================
|
|
||||||
testImplementation(libs.junit)
|
|
||||||
androidTestImplementation(libs.androidx.test.ext.junit)
|
|
||||||
androidTestImplementation(libs.espresso.core)
|
|
||||||
}
|
}
|
||||||
|
|
@ -6,5 +6,5 @@ android {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation(libs.kotlin.reflect)
|
implementation(libs.kotlin.reflect)
|
||||||
api(project(":core:architecture"))
|
implementation(project(":core:architecture"))
|
||||||
}
|
}
|
||||||
|
|
@ -7,7 +7,20 @@ android {
|
||||||
buildFeatures {
|
buildFeatures {
|
||||||
viewBinding = true
|
viewBinding = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
buildTypes {
|
||||||
|
debug {
|
||||||
|
minifyEnabled false
|
||||||
|
zipAlignEnabled true
|
||||||
}
|
}
|
||||||
|
release {
|
||||||
|
minifyEnabled false
|
||||||
|
zipAlignEnabled true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -17,23 +30,19 @@ dependencies {
|
||||||
api(project(":core:model"))
|
api(project(":core:model"))
|
||||||
api(libs.material)
|
api(libs.material)
|
||||||
api(libs.appcompat)
|
api(libs.appcompat)
|
||||||
api(libs.lifecycle.viewmodel.ktx)
|
implementation(libs.lifecycle.viewmodel.ktx)
|
||||||
api(libs.fragment.ktx)
|
implementation(libs.fragment.ktx)
|
||||||
api(libs.retrofit.kotlin.serialization)
|
implementation(libs.retrofit.kotlin.serialization)
|
||||||
api(libs.baseAdapter)
|
implementation(libs.baseAdapter)
|
||||||
api(libs.magicIndicator)
|
api(libs.magicIndicator)
|
||||||
api(libs.glide)
|
implementation(libs.glide)
|
||||||
api(libs.okhttp.logging)
|
implementation(libs.okhttp.logging)
|
||||||
api(libs.kotlinx.serialization.json)
|
implementation(libs.kotlinx.serialization.json)
|
||||||
//api(libs.multiDex)
|
implementation(libs.gson)
|
||||||
api(libs.gson)
|
|
||||||
//api 'com.google.code.gson:gson:2.13.2'
|
|
||||||
|
|
||||||
implementation(libs.startup)
|
implementation(libs.startup)
|
||||||
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.8.22'
|
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.8.22'
|
||||||
api 'io.github.pengxurui:modular-eventbus-api:1.0.5'
|
api 'io.github.pengxurui:modular-eventbus-api:1.0.5'
|
||||||
api 'io.github.pengxurui:modular-eventbus-compiler:1.0.5'
|
api 'io.github.pengxurui:modular-eventbus-compiler:1.0.5'
|
||||||
implementation project(':bill')
|
implementation project(':bill')
|
||||||
api 'com.google.android.gms:play-services-ads-identifier:18.0.1'
|
api 'com.google.android.gms:play-services-ads-identifier:18.0.1'
|
||||||
|
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue