This commit is contained in:
parent
0319e2aec2
commit
d52dee56be
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue