编译成功配置

This commit is contained in:
renhaoting 2026-01-09 17:09:03 +08:00
parent 6d741d9ce5
commit 7b24d8e3ff
6 changed files with 58 additions and 0 deletions

View File

@ -25,10 +25,17 @@ android {
} }
buildTypes { buildTypes {
debug {
isMinifyEnabled = false
isZipAlignEnabled = true
}
release { release {
isMinifyEnabled = false isMinifyEnabled = false
isZipAlignEnabled = true
} }
} }
compileOptions { compileOptions {
sourceCompatibility = JavaVersion.VERSION_11 sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11 targetCompatibility = JavaVersion.VERSION_11

View File

@ -58,10 +58,17 @@ android {
} }
buildTypes { buildTypes {
debug {
isMinifyEnabled = false
isZipAlignEnabled = true
}
release { release {
isMinifyEnabled = false isMinifyEnabled = false
isZipAlignEnabled = true
} }
} }
compileOptions { compileOptions {
sourceCompatibility = JavaVersion.VERSION_11 sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11 targetCompatibility = JavaVersion.VERSION_11

View File

@ -2,6 +2,17 @@ apply from: "${project.rootDir}/core.build.gradle"
android { android {
namespace = "com.ama.core.architecture.reflect" namespace = "com.ama.core.architecture.reflect"
buildTypes {
debug {
minifyEnabled false
zipAlignEnabled true
}
release {
minifyEnabled false
zipAlignEnabled true
}
}
} }
dependencies { dependencies {

View File

@ -5,6 +5,17 @@ android {
buildFeatures { buildFeatures {
viewBinding = true viewBinding = true
} }
buildTypes {
debug {
minifyEnabled false
zipAlignEnabled true
}
release {
minifyEnabled false
zipAlignEnabled true
}
}
} }
dependencies { dependencies {

View File

@ -2,6 +2,17 @@ apply from: "${project.rootDir}/core.build.gradle"
android { android {
namespace = "com.ama.core.designsystem" namespace = "com.ama.core.designsystem"
buildTypes {
debug {
minifyEnabled false
zipAlignEnabled true
}
release {
minifyEnabled false
zipAlignEnabled true
}
}
} }
dependencies { dependencies {

View File

@ -2,6 +2,17 @@ apply from: "${project.rootDir}/core.build.gradle"
android { android {
namespace 'com.ama.core.model' namespace 'com.ama.core.model'
buildTypes {
debug {
minifyEnabled false
zipAlignEnabled true
}
release {
minifyEnabled false
zipAlignEnabled true
}
}
} }
dependencies { dependencies {