1.多渠道打包

2.app更新页面
This commit is contained in:
2025-09-28 22:27:06 +08:00
parent 06b1050938
commit 046a24a842
12 changed files with 229 additions and 15 deletions

View File

@@ -33,8 +33,7 @@ android {
javaCompileOptions {
annotationProcessorOptions {
arguments = [
// AROUTER_MODULE_NAME: project.getName()
AROUTER_MODULE_NAME: android.defaultConfig.applicationId
AROUTER_MODULE_NAME: project.getName()
]
}
}
@@ -102,7 +101,7 @@ android {
}
buildTypes {
release {
minifyEnabled false
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.release
@@ -124,9 +123,7 @@ android {
debug {
debuggable true
minifyEnabled false
// applicationIdSuffix ".test" // 为测试包添加包名后缀
// resValue("string", "app_name", "秘地测试版")
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.debug
@@ -165,7 +162,7 @@ android {
}
kotlinOptions {
jvmTarget = '11'
jvmTarget = '17'
}
dexOptions {
dexInProcess true
@@ -193,7 +190,13 @@ dependencies {
implementation files('libs/logger-2.2.2-release.aar')
implementation files('libs/main-2.2.3-release.aar')
implementation files('libs/WbCloudFaceLiveSdk-face-v6.6.2-8e4718fc.aar')
implementation files('libs/WbCloudNormal-v5.1.10-4e3e198.aar')
implementation(libs.arouter.api.v150)
//annotationProcessor
annotationProcessor libs.arouter.compiler
implementation project(':modulevocal') // 必须
annotationProcessor project(':modulevocal') // 关键!
@@ -201,10 +204,6 @@ dependencies {
api project(":moduleLogin")
implementation project(':modulemain')
implementation(libs.arouter.api.v150)
//annotationProcessor
annotationProcessor libs.arouter.compiler
//aar的名称例如WbCloudFaceLiveSdk-v6.0.0-1234567.aar填入'WbCloudFaceLiveSdk-v6.0.0-1234567'
// implementation(name: 'WbCloudFaceLiveSdk-face-v6.6.2-8e4718fc', ext: 'aar')
////2. 云normal SDK

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 789 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 MiB