bugfixes:增加希沃签名
This commit is contained in:
2025-04-01 18:18:32 +08:00
parent 8716bf0e36
commit 7599d14897
7 changed files with 53 additions and 21 deletions

View File

@@ -29,8 +29,8 @@ android {
defaultConfig {
applicationId "com.aoleyun.sn"
versionCode 169
versionName "1.4.1217"
versionCode 170
versionName "1.5.0328"
//There are no CERT files because If the mini sdk version is 23+, the AGP will ignore the V1 scheme signature.
minSdkVersion 24
@@ -73,6 +73,14 @@ android {
// newly.res.srcDirs = ['src/beta/res']
}
// Disable release builds for now
android.variantFilter { variant ->
// // Icon recents is Go only
// if (name.contains("WithQuickstepIconRecents") && !name.contains("l3go")) {
// variant.setIgnore(true)
// }
}
//签名
signingConfigs {
zhanRui {
@@ -216,17 +224,32 @@ android {
v1SigningEnabled true
v2SigningEnabled true
}
}
// Disable release builds for now
android.variantFilter { variant ->
// // Icon recents is Go only
// if (name.contains("WithQuickstepIconRecents") && !name.contains("l3go")) {
// variant.setIgnore(true)
// }
seewo {
storeFile file("keystore/aiud.keystore")
storePassword "s4HdJuphaiHhU7WY"
keyAlias "androidreleasekey"
keyPassword "JwUw2oV16rUjWLBC"
v1SigningEnabled true
v2SigningEnabled true
}
}
buildTypes {
seewoDebug.initWith(debug)
seewoDebug {
versionNameSuffix "-debug"
debuggable true
signingConfig signingConfigs.seewo
buildConfigField "String", "platform", '"seewo"'
}
seewoRelease.initWith(release)
seewoRelease {
signingConfig signingConfigs.seewo
buildConfigField "String", "platform", '"seewo"'
}
P50Debug.initWith(debug)
P50Debug {
versionNameSuffix "-debug"