version:
fix: update:更换为酷信
This commit is contained in:
121
build.gradle
121
build.gradle
@@ -24,7 +24,7 @@ allprojects {
|
||||
}
|
||||
|
||||
def appName() {
|
||||
return "AoleyunLauncher3"
|
||||
return "KuxinLauncher3"
|
||||
}
|
||||
|
||||
def releaseTime() {
|
||||
@@ -66,13 +66,13 @@ android {
|
||||
minSdkVersion 26
|
||||
targetSdkVersion 28
|
||||
|
||||
//// //MTK
|
||||
// versionCode 48
|
||||
// versionName "2.3.8"
|
||||
// //MTK
|
||||
versionCode 49
|
||||
versionName "2.3.9"
|
||||
|
||||
//cube
|
||||
versionCode 80
|
||||
versionName "6.4.0"
|
||||
// //cube
|
||||
// versionCode 80
|
||||
// versionName "6.4.0"
|
||||
|
||||
ndk {
|
||||
//选择要添加的对应 cpu 类型的 .so 库。
|
||||
@@ -109,6 +109,15 @@ android {
|
||||
v2SigningEnabled false
|
||||
}
|
||||
|
||||
zhanRui12 {
|
||||
storeFile file("src/doc/zhanrui12.jks")
|
||||
storePassword "123456"
|
||||
keyAlias "zhanrui12"
|
||||
keyPassword "123456"
|
||||
v1SigningEnabled true
|
||||
v2SigningEnabled true
|
||||
}
|
||||
|
||||
mtk {
|
||||
storeFile file("src/doc/xueshibaoos.jks")
|
||||
storePassword "123456"
|
||||
@@ -125,9 +134,63 @@ android {
|
||||
keyPassword "123456"
|
||||
v2SigningEnabled false
|
||||
}
|
||||
|
||||
zhanruiG10Z{
|
||||
storeFile file("src/doc/zhanruiG10Z.keystore")
|
||||
storePassword "123456"
|
||||
keyAlias "zhanruiG10Z"
|
||||
keyPassword "123456"
|
||||
v1SigningEnabled true
|
||||
v2SigningEnabled true
|
||||
}
|
||||
|
||||
G10P {
|
||||
storeFile file("src/doc/G10PMTK11.jks")
|
||||
storePassword "123456"
|
||||
keyAlias "G10PMTK11"
|
||||
keyPassword "123456"
|
||||
v1SigningEnabled true
|
||||
v2SigningEnabled true
|
||||
}
|
||||
|
||||
U807 {
|
||||
storeFile file("src/doc/AllwinnerU807.jks")
|
||||
storePassword "123456"
|
||||
keyAlias "u807"
|
||||
keyPassword "123456"
|
||||
v2SigningEnabled false
|
||||
}
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
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
|
||||
}
|
||||
|
||||
G10PDebug.initWith(debug)
|
||||
G10PDebug {
|
||||
buildConfigField "String", "platform", '"MTK11"'
|
||||
versionNameSuffix "-debug"
|
||||
debuggable true
|
||||
signingConfig signingConfigs.G10P
|
||||
}
|
||||
|
||||
G10PRelease.initWith(release)
|
||||
G10PRelease {
|
||||
buildConfigField "String", "platform", '"MTK11"'
|
||||
signingConfig signingConfigs.G10P
|
||||
}
|
||||
|
||||
zhanRuiDebug.initWith(debug)
|
||||
zhanRuiDebug {
|
||||
versionNameSuffix "-debug"
|
||||
@@ -151,6 +214,20 @@ android {
|
||||
signingConfig signingConfigs.zhanRuiUserdebug
|
||||
}
|
||||
|
||||
zhanRui12Debug.initWith(debug)
|
||||
zhanRui12Debug {
|
||||
versionNameSuffix "-debug"
|
||||
buildConfigField "String", "platform", '"AH6016"'
|
||||
debuggable true
|
||||
signingConfig signingConfigs.zhanRui12
|
||||
}
|
||||
|
||||
zhanRui12Release.initWith(release)
|
||||
zhanRui12Release {
|
||||
buildConfigField "String", "platform", '"AH6016"'
|
||||
signingConfig signingConfigs.zhanRui12
|
||||
}
|
||||
|
||||
TeclastP20SDebug.initWith(debug)
|
||||
TeclastP20SDebug {
|
||||
debuggable true
|
||||
@@ -165,6 +242,20 @@ android {
|
||||
signingConfig signingConfigs.TeclastP20S
|
||||
}
|
||||
|
||||
zhanruiG10ZDebug.initWith(debug)
|
||||
zhanruiG10ZDebug {
|
||||
buildConfigField "String", "platform", '"ZR6016"'
|
||||
versionNameSuffix "-debug"
|
||||
debuggable true
|
||||
signingConfig signingConfigs.zhanruiG10Z
|
||||
}
|
||||
|
||||
zhanruiG10ZRelease.initWith(release)
|
||||
zhanruiG10ZRelease {
|
||||
buildConfigField "String", "platform", '"ZR6016"'
|
||||
signingConfig signingConfigs.zhanruiG10Z
|
||||
}
|
||||
|
||||
debug {
|
||||
buildConfigField "String", "platform", '"MTK"'
|
||||
debuggable true
|
||||
@@ -200,7 +291,7 @@ android {
|
||||
variant.outputs.each { output ->
|
||||
def outputFile = ""
|
||||
if (outputFile != null) {
|
||||
def fileName = "${appName()}-${variant.versionCode}-V${variant.versionName}-${releaseTime()}-${productFlavors[0].name}.apk"
|
||||
def fileName = "${appName()}-${variant.versionCode}-V${variant.versionName}-${releaseTime()}-${productFlavors[0].name}-${buildType.name}.apk"
|
||||
output.outputFileName = fileName
|
||||
}
|
||||
}
|
||||
@@ -220,15 +311,15 @@ android {
|
||||
productFlavors {
|
||||
aosp {
|
||||
dimension "app"
|
||||
applicationId 'com.aoleyun.os'
|
||||
testApplicationId 'com.aoleyun.os.tests'
|
||||
applicationId 'com.uiuipad.os'
|
||||
testApplicationId 'com.uiuipad.os.tests'
|
||||
}
|
||||
|
||||
/*hide l3go*/
|
||||
// l3go {
|
||||
// dimension "app"
|
||||
// applicationId 'com.aoleyun.os'
|
||||
// testApplicationId 'com.aoleyun.os.tests'
|
||||
// applicationId 'com.uiuipad.os'
|
||||
// testApplicationId 'com.uiuipad.os.tests'
|
||||
// }
|
||||
|
||||
/*withQuickstep {
|
||||
@@ -412,9 +503,9 @@ protobuf {
|
||||
task.builtins {
|
||||
remove java
|
||||
javanano {
|
||||
option "java_package=launcher_log_extension.proto|com.aoleyun.os.userevent.nano"
|
||||
option "java_package=launcher_log.proto|com.aoleyun.os.userevent.nano"
|
||||
option "java_package=launcher_dump.proto|com.aoleyun.os.model.nano"
|
||||
option "java_package=launcher_log_extension.proto|com.uiuipad.os.userevent.nano"
|
||||
option "java_package=launcher_log.proto|com.uiuipad.os.userevent.nano"
|
||||
option "java_package=launcher_dump.proto|com.uiuipad.os.model.nano"
|
||||
option "enum_style=java"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user