version:1.3.1

fix:
update:增加搜索提示,增加iplay50 mini iplay50 13
This commit is contained in:
2023-04-24 09:24:29 +08:00
parent 2196527c25
commit 888c13651a
9 changed files with 432 additions and 10 deletions

View File

@@ -18,8 +18,8 @@ android {
minSdkVersion 26
targetSdkVersion 29
versionCode 13
versionName "1.2.1"
versionCode 23
versionName "1.3.1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@@ -87,6 +87,15 @@ android {
v1SigningEnabled true
v2SigningEnabled false
}
//iPlay50 mini,iPlay50 android13 共用签名
iPlay50mini {
storeFile file("keystore/iPlay50Mini.keystore")
storePassword "android"
keyAlias "platform"
keyPassword "android"
v2SigningEnabled false
}
}
buildTypes {
@@ -132,6 +141,34 @@ android {
signingConfig signingConfigs.iPlay50SE
}
iPlay50miniDebug.initWith(debug)
iPlay50miniDebug {
buildConfigField "String", "platform", '"T811"'
versionNameSuffix "-debug"
debuggable true
signingConfig signingConfigs.iPlay50mini
}
iPlay50miniRelease.initWith(release)
iPlay50miniRelease {
buildConfigField "String", "platform", '"T811"'
signingConfig signingConfigs.iPlay50mini
}
iPlay5013Debug.initWith(debug)
iPlay5013Debug {
buildConfigField "String", "platform", '"iplay5013"'
versionNameSuffix "-debug"
debuggable true
signingConfig signingConfigs.iPlay50mini
}
iPlay5013Release.initWith(release)
iPlay5013Release {
buildConfigField "String", "platform", '"iplay5013"'
signingConfig signingConfigs.iPlay50mini
}
zhanRuiDebug.initWith(debug)
zhanRuiDebug {
debuggable true
@@ -184,6 +221,24 @@ android {
}
}
}
sourceSets {
Cube8183Debug { manifest.srcFile 'src/debug/AndroidManifest.xml' }
Teclast8183Debug { manifest.srcFile 'src/debug/AndroidManifest.xml' }
iPlay50SEDebug { manifest.srcFile 'src/debug/AndroidManifest.xml' }
iPlay50miniDebug { manifest.srcFile 'src/debug/AndroidManifest.xml' }
iPlay5013Debug { manifest.srcFile 'src/debug/AndroidManifest.xml' }
zhanRuiDebug { manifest.srcFile 'src/debug/AndroidManifest.xml' }
debug { manifest.srcFile 'src/debug/AndroidManifest.xml' }
Cube8183Release { manifest.srcFile 'src/main/AndroidManifest.xml' }
Teclast8183Release { manifest.srcFile 'src/main/AndroidManifest.xml' }
iPlay50SERelease { manifest.srcFile 'src/main/AndroidManifest.xml' }
iPlay50miniRelease { manifest.srcFile 'src/main/AndroidManifest.xml' }
iPlay5013Release { manifest.srcFile 'src/main/AndroidManifest.xml' }
zhanRuiRelease { manifest.srcFile 'src/main/AndroidManifest.xml' }
release { manifest.srcFile 'src/main/AndroidManifest.xml' }
}
}
dependencies {