This commit is contained in:
844143714@qq,com 2026-04-29 01:15:47 +08:00
parent 0319e2aec2
commit d52dee56be
1 changed files with 10 additions and 0 deletions

View File

@ -21,8 +21,18 @@ android {
}
}
signingConfigs {
create("release") {
storeFile = file("../key/StandAPP")
storePassword = "StandAPP"
keyAlias = "standapp"
keyPassword = "StandAPP"
}
}
buildTypes {
release {
signingConfig = signingConfigs.getByName("release")
// 1. 开启代码混淆/压缩 (注意是 isMinifyEnabled)
isMinifyEnabled = true