version:1.0.0

fix:
update:移植到酷信
This commit is contained in:
2023-11-24 09:45:50 +08:00
parent bbd4895bcb
commit ba34dd7dbe
20 changed files with 690 additions and 18 deletions

View File

@@ -17,8 +17,8 @@ android {
minSdkVersion 26
targetSdkVersion 29
versionCode 48
versionName "1.5.6"
versionCode 1
versionName "1.0.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@@ -124,9 +124,54 @@ android {
v1SigningEnabled true
v2SigningEnabled true
}
U807 {
storeFile file("keystore/AllwinnerU807.jks")
storePassword "123456"
keyAlias "u807"
keyPassword "123456"
v2SigningEnabled false
}
iPlay50P {
storeFile file("keystore/iPlay50P.jks")
storePassword "123456"
keyAlias "iplay50p"
keyPassword "123456"
v1SigningEnabled true
v2SigningEnabled true
}
}
buildTypes {
iPlay50PDebug.initWith(debug)
iPlay50PDebug {
buildConfigField "String", "platform", '"T1102"'
versionNameSuffix "-debug"
debuggable true
signingConfig signingConfigs.iPlay50P
}
iPlay50PRelease.initWith(release)
iPlay50PRelease {
buildConfigField "String", "platform", '"T1102"'
signingConfig signingConfigs.iPlay50P
}
U807Debug.initWith(debug)
U807Debug {
buildConfigField "String", "platform", '"U807"'
versionNameSuffix "-debug"
debuggable true
signingConfig signingConfigs.U807
}
U807Release.initWith(release)
U807Release {
buildConfigField "String", "platform", '"U807"'
signingConfig signingConfigs.U807
}
Cube8183Debug.initWith(debug)
Cube8183Debug {
debuggable true
@@ -307,6 +352,8 @@ android {
}
sourceSets {
iPlay50PDebug { manifest.srcFile 'src/debug/AndroidManifest.xml' }
U807Debug { manifest.srcFile 'src/debug/AndroidManifest.xml' }
Cube8183Debug { manifest.srcFile 'src/debug/AndroidManifest.xml' }
Teclast8183Debug { manifest.srcFile 'src/debug/AndroidManifest.xml' }
Teclast8515Debug { manifest.srcFile 'src/debug/AndroidManifest.xml' }
@@ -318,6 +365,8 @@ android {
zhanRuiDebug { manifest.srcFile 'src/debug/AndroidManifest.xml' }
debug { manifest.srcFile 'src/debug/AndroidManifest.xml' }
iPlay50PRelease { manifest.srcFile 'src/main/AndroidManifest.xml' }
U807Release { manifest.srcFile 'src/main/AndroidManifest.xml' }
Cube8183Release { manifest.srcFile 'src/main/AndroidManifest.xml' }
Teclast8183Release { manifest.srcFile 'src/main/AndroidManifest.xml' }
Teclast8515Release { manifest.srcFile 'src/main/AndroidManifest.xml' }