version:1.5.0821

bugfixes:
add:优化sn显示,增加mt6765平台
This commit is contained in:
2025-09-03 11:26:51 +08:00
parent 64620b4778
commit 06513441bd
12 changed files with 140 additions and 64 deletions

View File

@@ -29,8 +29,8 @@ android {
defaultConfig {
applicationId "com.aoleyun.sn"
versionCode 188
versionName "1.5.0723"
versionCode 192
versionName "1.5.0821"
//There are no CERT files because If the mini sdk version is 23+, the AGP will ignore the V1 scheme signature.
minSdkVersion 24
@@ -255,9 +255,32 @@ android {
v1SigningEnabled true
v2SigningEnabled true
}
MT6765 {
storeFile file("keystore/MT6765.keystore")
storePassword "123456"
keyAlias "mt6765"
keyPassword "123456"
v1SigningEnabled true
v2SigningEnabled true
}
}
buildTypes {
MT6765Debug.initWith(debug)
MT6765Debug {
buildConfigField "String", "platform", '"MT6765"'
versionNameSuffix "-debug"
debuggable true
signingConfig signingConfigs.MT6765
}
MT6765Release.initWith(release)
MT6765Release {
buildConfigField "String", "platform", '"MT6765"'
signingConfig signingConfigs.MT6765
}
QZ15Debug.initWith(debug)
QZ15Debug {
buildConfigField "String", "platform", '"QZA15"'