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 {
|
buildTypes {
|
||||||
release {
|
release {
|
||||||
|
signingConfig = signingConfigs.getByName("release")
|
||||||
// 1. 开启代码混淆/压缩 (注意是 isMinifyEnabled)
|
// 1. 开启代码混淆/压缩 (注意是 isMinifyEnabled)
|
||||||
isMinifyEnabled = true
|
isMinifyEnabled = true
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue