美文网首页
Android热修复TinkerPatch的接入和使用

Android热修复TinkerPatch的接入和使用

作者: 简祖明 | 来源:发表于2017-01-19 17:43 被阅读0次

    Tinker和TinkerPatch区别:

    Tinker是Tencent在Github上的开源项目(Github链接),而TinkerPatch是基于Tinker的第三方SDK,提供后台管理和一些api,使用起来非常简单方便。

    集成SDK:

    1.登录TinkerPatch网址,注册添加应用,获得应用的appKey
    2.项目下的Gradle添加仓库jcenter的依赖:

    buildscript {
        repositories {
            mavenLocal()
            jcenter()
        }
        dependencies {
            classpath ("com.tinkerpatch.sdk:tinkerpatch-gradle-plugin:${TINKERPATCH_VERSION}") { changing = true }
        }
    }
    

    3.Module层的Gradle添加依赖:

    dependencies {
        //无需引入tinker的任何库,使用tinkerpatch sdk即可,如之前项目使用过Tinker,则集成SDK时其他的tinker库需要删除,否则会报错
        compile("com.tinkerpatch.sdk:tinkerpatch-android-sdk:${TINKERPATCH_VERSION}") { changing = true }
        compile "com.android.support:multidex:1.0.1"
    }
    
    //这个.gradle文件可以直接复制,无需修改,只是在生成补丁时修改部分内容
    apply from: 'tinkerpatch.gradle'
    

    4.tinkerpatch.gradle:

    appKey = "d4297963e248b525"    //第一步中 平台上的appKey
    appVersion = "1.0.2"  //这个比价重要,并非app版本号,只是用来作为TOKENID,每次生成补丁时,必须修改这个参数,保证不同。
    //生成补丁的3个文件路径。
    baseApkFile = "${pathPrefix}/${name}.apk"  
    baseProguardMappingFile = "${pathPrefix}/${name}-mapping.txt"
    baseResourceRFile = "${pathPrefix}/${name}-R.txt"
    

    5.自定义Application

     @Override
        public void onCreate() {
            super.onCreate();
            // 我们可以从这里获得Tinker加载过程的信息
            if (BuildConfig.TINKER_ENABLE) {
                tinkerApplicationLike = TinkerPatchApplicationLike.getTinkerPatchApplicationLike();
    
                // 初始化TinkerPatch SDK
                TinkerPatch.init(tinkerApplicationLike)
                    .reflectPatchLibrary()
                    .setPatchRollbackOnScreenOff(true)
                    .setPatchRestartOnSrceenOff(true);
    
                // 每隔3个小时去访问后台时候有更新,通过handler实现轮训的效果
                new FetchPatchHandler().fetchPatchWithInterval(3);
            }
        }
    
        @Override
        public void attachBaseContext(Context base) {
            super.attachBaseContext(base);
            //you must install multiDex whatever tinker is installed!
            MultiDex.install(base);
        }
    

    以上是最为基础的配置
    更多api可参见集成文档SDK API

    打包以及生成补丁

    第一次直接打包会在app/build/bakApk下生成.apk和-mapping.txt和-R.txt 3个文件,分别为打包文件,混淆文件和资源R文件,生成补丁时需要这三个。


    tinker_01.png

    若修改了上线项目中代码,现在需要打补丁,修复线上的错误。
    1.修改上文4.tinkerpatch.gradle:中的3个文件路径 ,如下图:

    tinker_02.png
    2.通过tinkerPatchRelease编译,会在app\build\outputs\tinkerPatch中生成
    patch_signed_7zip.apk,即为补丁文件,网友建议修改.apk防止抓包。
    新同学可能不知道tinkerPatchRelease在哪,在AndroidStudio右上角的Gradle中,如图,右键运行即可
    tinker_03.png
    3将2中生成的*zip.apk上传至后台系统,即可。
    最后附上在github的Demo下载地址;

    相关文章

      网友评论

          本文标题:Android热修复TinkerPatch的接入和使用

          本文链接:https://www.haomeiwen.com/subject/mnpibttx.html