version:1.4

fix:修复开机写入扶小鹰包名
update:增加mtk11打包
This commit is contained in:
2022-10-28 16:14:53 +08:00
parent f0210192ea
commit e472c898c3
4 changed files with 70 additions and 11 deletions

View File

@@ -73,8 +73,8 @@ android {
official {
flavorDimensions "default"
versionCode 4
versionName "1.3"
versionCode 5
versionName "1.4"
}
}
@@ -106,9 +106,56 @@ android {
v1SigningEnabled true
v2SigningEnabled true
}
mtkAndroid11 {
storeFile file("src/keys/mtkAndroid11.jks")
storePassword "123456"
keyAlias "mtk11"
keyPassword "123456"
v1SigningEnabled true
v2SigningEnabled true
}
unisoc {
storeFile file("src/keys/Unisoc.jks")
storePassword "123456"
keyAlias "unisoc"
keyPassword "123456"
v1SigningEnabled true
v2SigningEnabled true
}
}
buildTypes {
unisocDebug.initWith(debug)
unisocDebug {
buildConfigField "String", "platform", '"ZhanRui"'
versionNameSuffix "-debug"
debuggable true
signingConfig signingConfigs.unisoc
}
unisocRelease.initWith(debug)
unisocRelease {
buildConfigField "String", "platform", '"ZhanRui"'
debuggable true
signingConfig signingConfigs.unisoc
}
mtk11Debug.initWith(debug)
mtk11Debug {
buildConfigField "String", "platform", '"MTK"'
versionNameSuffix "-debug"
debuggable true
signingConfig signingConfigs.mtkAndroid11
}
mtk11Release.initWith(release)
mtk11Release {
buildConfigField "String", "platform", '"MTK"'
signingConfig signingConfigs.mtkAndroid11
}
zhanRuiDebug.initWith(debug)
zhanRuiDebug {
buildConfigField "String", "platform", '"ZhanRui"'