version:6.5

fix:
update:增加酷比MTK Android12 系统签名
This commit is contained in:
2022-12-06 15:16:56 +08:00
parent 7c4a4bd6ca
commit e937cfc5f3
5 changed files with 28 additions and 5 deletions

View File

@@ -45,15 +45,15 @@ android {
productFlavors {
official {
flavorDimensions "default"
versionCode 39
versionName "4.8"
versionCode 56
versionName "6.5"
}
}
//签名
signingConfigs {
zhanRui {
storeFile file("src/keys/zhanxun.keystore")
storeFile file("keystore/zhanxun.keystore")
storePassword "123456"
keyAlias "zhanxun"
keyPassword "123456"
@@ -62,7 +62,7 @@ android {
}
teclastuserdebug {
storeFile file("src/keys/TeclastUserDebug.jks")
storeFile file("keystore/TeclastUserDebug.jks")
storePassword "123456"
keyAlias "teclast"
keyPassword "123456"
@@ -71,16 +71,39 @@ android {
}
mtk {
storeFile file("src/keys/xueshibaoos.jks")
storeFile file("keystore/xueshibaoos.jks")
storePassword "123456"
keyAlias "xueshibaoos"
keyPassword "123456"
v1SigningEnabled true
v2SigningEnabled true
}
mtk12 {
storeFile file("keystore/mtkAndroid12.keystore")
storePassword "123456"
keyAlias "mtk12"
keyPassword "123456"
v1SigningEnabled true
v2SigningEnabled true
}
}
buildTypes {
MTKAndroid12Release.initWith(release)
MTKAndroid12Release {
buildConfigField "String", "platform", '"MTK"'
signingConfig signingConfigs.mtk12
}
MTKAndroid12Debug.initWith(debug)
MTKAndroid12Debug {
buildConfigField "String", "platform", '"MTK"'
versionNameSuffix "-debug"
debuggable true
signingConfig signingConfigs.mtk12
}
zhanRuiRelease.initWith(release)
zhanRuiRelease {
buildConfigField "String", "platform", '"ZhanRui"'

Binary file not shown.