Hot update (using bugly)

1. Application Account: https://bugly.qq.com/
2. improve developers to create applications information +
3. The reference document integration
Bugly Android heat Update Guide: https://bugly.qq.com/docs/user- Guide / Instruction-Manual-Android-Hotfix / v = 20,181,014,122,344?
Bugly Android hot update Detailed: https://bugly.qq.com/docs/user-guide/instruction-manual-android-hotfix-demo/

1, when the SDK integration

gradle arranged
in "build.gradle" file app module added (example configuration):

android {
        defaultConfig {
          ndk {
            //设置支持的SO库架构
            abiFilters 'armeabi' //, 'x86', 'armeabi-v7a', 'x86_64', 'arm64-v8a'

            // 开启multidex
            multiDexEnabled true
          }
        }
      }
      dependencies {
          compile "com.android.support:multidex:1.0.1" // 多dex配置
          //注释掉原有bugly的仓库
          //compile 'com.tencent.bugly:crashreport:latest.release'//其中latest.release指代最新版本号,也可以指定明确的版本号,例如1.3.4
          compile 'com.tencent.bugly:crashreport_upgrade:1.3.6'
          // 指定tinker依赖版本(注:应用升级1.3.5版本起,不再内置tinker)
          compile 'com.tencent.tinker:tinker-android-lib:1.9.9'
          compile 'com.tencent.bugly:nativecrashreport:latest.release' //其中latest.release指代最新版本号,也可以指定明确的版本号,例如2.2.0
      }

原文档中没有
// 开启multidex
multiDexEnabled true
这个得自己加
原因:Android 65535,在Android App中默认只能有65535个方法,为了解决这个问题,需要加上面的代码

In the custom ApplicationLike Note that if you want to see the log in the log Logcat at run time, put the following code into a true false
@Override
    public void onCreate() {
        super.onCreate();
        // 这里实现SDK初始化,appId替换成你的在Bugly平台申请的appId
        // 调试时,将第三个参数改为true
        Bugly.init(getApplication(), "900029763", false);
    }

2、tinker-support.gradle

Note: You need to create a tinker-support.gradle oh this file in the same directory.
下面代码中要注意

/**
 * 此处填写每次构建生成的基准包目录
 */
def baseApkDir = "app-0208-15-10-00"

    //建议设置true,用户就不用再自己管理tinkerId的命名,插件会为每一次构建的base包自动生成唯一的tinkerId,默认命名规则是versionname.versioncode_时间戳
    //具体参考https://github.com/BuglyDevTeam/Bugly-Android-Demo/wiki/Tinker-ID%E8%AF%A5%E6%80%8E%E4%B9%88%E8%AE%BE%E7%BD%AE
    //autoGenerateTinkerId = true
    // 构建基准包和补丁包都要指定不同的tinkerId,并且必须保证唯一性
    tinkerId = "base-1.0.1"

如果不想每次打补丁包时改 tinkerId,可以把 tinkerId = "base-1.0.1" 注释掉,把上面那一行代码放开
最好是手动设置,这样可以知道自己设置了什么,自动生成的话我们不知道它生成了什么

apply plugin: 'com.tencent.bugly.tinker-support'

def bakPath = file("${buildDir}/bakApk/")

/**
 * 此处填写每次构建生成的基准包目录
 */
def baseApkDir = "app-0208-15-10-00"

/**
 * 对于插件各参数的详细解析请参考
 */
tinkerSupport {

    // 开启tinker-support插件,默认值true
    enable = true

    // 指定归档目录,默认值当前module的子目录tinker
    autoBackupApkDir = "${bakPath}"

    // 是否启用覆盖tinkerPatch配置功能,默认值false
    // 开启后tinkerPatch配置不生效,即无需添加tinkerPatch
    overrideTinkerPatchConfiguration = true

    // 编译补丁包时,必需指定基线版本的apk,默认值为空
    // 如果为空,则表示不是进行补丁包的编译
    // @{link tinkerPatch.oldApk }
    baseApk = "${bakPath}/${baseApkDir}/app-release.apk"

    // 对应tinker插件applyMapping
    baseApkProguardMapping = "${bakPath}/${baseApkDir}/app-release-mapping.txt"

    // 对应tinker插件applyResourceMapping
    baseApkResourceMapping = "${bakPath}/${baseApkDir}/app-release-R.txt"

    //建议设置true,用户就不用再自己管理tinkerId的命名,插件会为每一次构建的base包自动生成唯一的tinkerId,默认命名规则是versionname.versioncode_时间戳
    //具体参考https://github.com/BuglyDevTeam/Bugly-Android-Demo/wiki/Tinker-ID%E8%AF%A5%E6%80%8E%E4%B9%88%E8%AE%BE%E7%BD%AE
    //autoGenerateTinkerId = true
    // 构建基准包和补丁包都要指定不同的tinkerId,并且必须保证唯一性
    tinkerId = "base-1.0.1"

    // 构建多渠道补丁时使用
    // buildAllFlavorsDir = "${bakPath}/${baseApkDir}"

    // 是否启用加固模式,默认为false.(tinker-spport 1.0.7起支持)
    // isProtectedApp = true

    // 是否开启反射Application模式
    enableProxyApplication = false

    // 是否支持新增非export的Activity(注意:设置为true才能修改AndroidManifest文件)
    supportHotplugComponent = true

}

/**
 * 一般来说,我们无需对下面的参数做任何的修改
 * 对于各参数的详细介绍请参考:
 * https://github.com/Tencent/tinker/wiki/Tinker-%E6%8E%A5%E5%85%A5%E6%8C%87%E5%8D%97
 */
tinkerPatch {
    //oldApk ="${bakPath}/${appName}/app-release.apk"
    ignoreWarning = false
    useSign = true
    dex {
        dexMode = "jar"
        pattern = ["classes*.dex"]
        loader = []
    }
    lib {
        pattern = ["lib/*/*.so"]
    }

    res {
        pattern = ["res/*", "r/*", "assets/*", "resources.arsc", "AndroidManifest.xml"]
        ignoreChange = []
        largeModSize = 100
    }

    packageConfig {
    }
    sevenZip {
        zipArtifact = "com.tencent.mm:SevenZip:1.1.10"
//        path = "/usr/local/bin/7za"
    }
    buildConfig {
        keepDexApply = false
        //tinkerId = "1.0.1-base"
        //applyMapping = "${bakPath}/${appName}/app-release-mapping.txt" //  可选,设置mapping文件,建议保持旧apk的proguard混淆方式
        //applyResourceMapping = "${bakPath}/${appName}/app-release-R.txt" // 可选,设置R.txt文件,通过旧apk文件保持ResId的分配
    }
}

3, initialization SDK

When you customize ApplicationLike, need appId

 @Override
    public void onCreate() {
        super.onCreate();
        // 这里实现SDK初始化,appId替换成你的在Bugly平台申请的appId
        // 调试时,将第三个参数改为true
        Bugly.init(getApplication(), "900029763", false);
    }

appId found in the back of my products need to set the point of application, you can find go after appId, as shown below:


16287050-c9a666f19d963d2f.png
40cdb929-d226-4fd7-992f-2c67b0f886cf.png

4, when the code obfuscation

-dontwarn com.tencent.bugly.**
-keep public class com.tencent.bugly.**{*;}
# tinker混淆规则
-dontwarn com.tencent.tinker.**
-keep class com.tencent.tinker.** { *; }

If you use a support-v4 package, you also need to configure the following confusing rules:

-keep class android.support.**{*;}

后面这一行混淆代码要手写,不能粘文档上的

5, start hot update

1, bug fixes

The class generated a bug fix, a patch baseline version of the next class coverage.

2, patch generated according to the baseline version

The tinker-support.gradle in

/**
 * 此处填写每次构建生成的基准包目录
 */
def baseApkDir = "app-0531-17-33-46"

As the left and into app → build → bakApk file name below, as shown below:


16287050-31f7097f50f32e47.png
7e9c5724-3a0c-489c-94c5-cf6b2d7a2898_2.png
3, modify tinkerId (if automatic would not have changed)

patch is a patch of meaning


16287050-fae5224781cb2fd2.png
ad258516-da6a-4aa5-b872-708eede806fe.png

Continue to press the document to go on it

Reproduced in: https: //www.jianshu.com/p/d627d716c13e

Guess you like

Origin blog.csdn.net/weixin_33938733/article/details/91288761