ソースを参照

多渠道打包

hanwenjie 1 年間 前
コミット
b13f675d96
4 ファイル変更73 行追加4 行削除
  1. 3 0
      app/app_channel.txt
  2. 57 3
      app/build.gradle
  3. 13 1
      build.gradle
  4. BIN
      keyStore/key.jks

+ 3 - 0
app/app_channel.txt

@@ -0,0 +1,3 @@
+aaa
+bbb
+ccc

+ 57 - 3
app/build.gradle

@@ -1,5 +1,15 @@
-plugins {
-    id 'com.android.application'
+apply plugin: 'com.android.application'
+apply plugin: 'com.tencent.vasdolly'
+
+buildscript {
+    repositories {
+        mavenLocal()
+        mavenCentral()
+        google()
+    }
+    dependencies {
+        classpath "com.tencent.vasdolly:plugin:3.0.6"
+    }
 }
 
 android {
@@ -16,10 +26,25 @@ android {
         testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
     }
 
+    signingConfigs {
+        release {
+            storeFile file("../keyStore/key.jks")
+            storePassword "Info666.com"
+            keyAlias "key0"
+            keyPassword "Info666.com"
+            enableV1Signing true
+            enableV2Signing true
+            enableV3Signing false
+        }
+
+    }
+
+
     buildTypes {
         release {
             minifyEnabled false
             proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
+            signingConfig signingConfigs.release
         }
     }
     compileOptions {
@@ -32,6 +57,35 @@ android {
     }
 }
 
+//VasDolly插件配置
+//gradle channelDebug/channelRelease 编译生成apk后,再根据生成的Apk生成渠道包
+channel{
+    channelFile = file("app_channel.txt")
+    //多渠道包的输出目录,默认为new File(project.buildDir,"channel")
+    outputDir = new File(project.buildDir,"channels")
+    //多渠道包的命名规则,默认为:${appName}-${versionName}-${versionCode}-${flavorName}-${buildType}-${buildTime}
+    apkNameFormat ='${appName}-${versionName}-${versionCode}-${flavorName}-${buildType}'
+    //快速模式:生成渠道包时不进行校验(速度可以提升10倍以上,默认为false)
+    fastMode = false
+    //buildTime的时间格式,默认格式:yyyyMMdd-HHmmss
+    buildTimeDateFormat = 'yyyyMMdd-HH:mm:ss'
+    //低内存模式(仅针对V2签名,默认为false):只把签名块、中央目录和EOCD读取到内存,不把最大头的内容块读取到内存,在手机上合成APK时,可以使用该模式
+    lowMemory = false
+}
+
+// gradle rebuildChannel 配置此任务用于不希望重新构建apk,直接根据指定的apk生成渠道包
+rebuildChannel {
+    channelFile = file("app_channel.txt")
+    //指定的apk生成渠道包,文件名中如果有base将被替换为渠道名,否则渠道名将作为前缀
+    baseApk = new File(project.buildDir, "outputs/apk/debug/app-debug.apk")
+    //默认为new File(project.buildDir, "rebuildChannel")
+    outputDir = new File(project.buildDir, "rebuildChannels")
+    //快速模式:生成渠道包时不进行校验(速度可以提升10倍以上,默认为false)
+    fastMode = false
+    //低内存模式(仅针对V2签名,默认为false):只把签名块、中央目录和EOCD读取到内存,不把最大头的内容块读取到内存,在手机上合成APK时,可以使用该模式
+    lowMemory = false
+}
+
 dependencies {
 
     implementation 'androidx.appcompat:appcompat:1.4.1'
@@ -45,5 +99,5 @@ dependencies {
     implementation 'com.github.jenly1314:zxing-lite:2.2.1'
     implementation group: 'cn.hutool', name: 'hutool-core', version: '5.8.20'
     implementation group: 'cn.hutool', name: 'hutool-http', version: '5.8.20'
-
+    api "com.tencent.vasdolly:helper:3.0.6"
 }

+ 13 - 1
build.gradle

@@ -1,5 +1,17 @@
 // Top-level build file where you can add configuration options common to all sub-projects/modules.
+buildscript {
+    repositories {
+        mavenLocal()
+        mavenCentral()
+        google()
+    }
+    dependencies {
+        classpath 'com.android.tools.build:gradle:4.2.2'
+    }
+}
+
 plugins {
     id 'com.android.application' version '8.0.2' apply false
     id 'com.android.library' version '8.0.2' apply false
-}
+}
+

BIN
keyStore/key.jks