美文网首页架构
Bugly多渠道更新+热修复 集成记录

Bugly多渠道更新+热修复 集成记录

作者: Amy_LuLu__ | 来源:发表于2019-01-31 15:48 被阅读175次

    该篇文章为 集成bugly的记录 不含集成后的操作步骤

    demo github地址 https://github.com/xulujiayou/BuglyDemo

    多渠道分为两种
    ①自己配置Flavors,可根据渠道进行更新,可根据渠道进行热修复。
    ②使用walle一次性打包,可根据渠道进行更新,但是修复只能修复全部,不能根据渠道。

    使用多渠道的时候
    一定要运行该渠道的程序上传,页面选择渠道才会出现你创建的渠道
    更新 修复 都有一定的延迟性

    我使用的是自己配置Flavors 因为项目需要

    1.project配置
    工程根目录下“build.gradle”文件中添加:

    buildscript {
        repositories {
            jcenter()
        }
        dependencies {
            classpath "com.tencent.bugly:tinker-support:1.1.3"
        }
    }
    

    2.module配置

    2.1 在app module的“build.gradle”文件中添加:

      android {
            defaultConfig {
              ndk {
                //设置支持的SO库架构
                abiFilters 'armeabi' //, 'x86', 'armeabi-v7a', 'x86_64', 'arm64-v8a'
              }
            }
          }
          dependencies {
              implementation "com.android.support:multidex:1.0.1" // 多dex配置
              //更新应用的
              implementation 'com.tencent.bugly:crashreport_upgrade:1.3.6'
              // 指定tinker依赖版本(注:应用升级1.3.5版本起,不再内置tinker)
              implementation 'com.tencent.tinker:tinker-android-lib:1.9.9'
              implementation 'com.tencent.bugly:nativecrashreport:3.3.1'
          }
    
    

    2.2 新建tinker配置文件

    在app module的“build.gradle”文件中添加:

    // 依赖插件脚本
    apply from: 'tinker-support.gradle'
    

    新建tinker-support.gradle文件


    tinker-support.gradle内容如下

    apply plugin: 'com.tencent.bugly.tinker-support'
    
    def bakPath = file("${buildDir}/bakApk/")
    
    /**
     * 此处填写每次构建生成的基准包目录
     */
    def baseApkDir = "app-0130-14-46-55"
    
    /**
     * 对于插件各参数的详细解析请参考
     */
    tinkerSupport {
    
        // 开启tinker-support插件,默认值true
        enable = true
    
        tinkerEnable = 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"
    
        // 构建基准包和补丁包都要指定不同的tinkerId,并且必须保证唯一性
        tinkerId = "patch-1.11"
    
        // 构建多渠道补丁时使用
         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.自定义Application
    我采用的是enableProxyApplication = false的方式

    public class SampleApplication extends TinkerApplication {
        public SampleApplication() {
            super(ShareConstants.TINKER_ENABLE_ALL, "download.xl.demo.test.buglydemo.SampleApplicationLike",
                    "com.tencent.tinker.loader.TinkerLoader", false);
        }
    }
    
    

    4.自定义ApplicationLike

    public class SampleApplicationLike extends DefaultApplicationLike {
    
        public static final String TAG = "Tinker.SampleApplicationLike";
    
        public SampleApplicationLike(Application application, int tinkerFlags,
                                     boolean tinkerLoadVerifyFlag, long applicationStartElapsedTime,
                                     long applicationStartMillisTime, Intent tinkerResultIntent) {
            super(application, tinkerFlags, tinkerLoadVerifyFlag, applicationStartElapsedTime, applicationStartMillisTime, tinkerResultIntent);
        }
    
    
        @Override
        public void onCreate() {
            super.onCreate();
    /*        // 这里实现SDK初始化,appId替换成你的在Bugly平台申请的appId
            // 调试时,将第三个参数改为true
            String channel = WalleChannelReader.getChannel(getApplication());
            Bugly.setAppChannel(getApplication(), channel);
            *//***** Bugly高级设置 *****//*
            BuglyStrategy strategy = new BuglyStrategy();
            *//**
             * 设置app渠道号
             *//*
            strategy.setAppChannel(channel);
            Bugly.init(getApplication(), "8e148b58d7", false, strategy);*/
            Bugly.init(getApplication(), "8e148b58d7", true);
        }
    
    
        @TargetApi(Build.VERSION_CODES.ICE_CREAM_SANDWICH)
        @Override
        public void onBaseContextAttached(Context base) {
            super.onBaseContextAttached(base);
            // you must install multiDex whatever tinker is installed!
            MultiDex.install(base);
    
            // 安装tinker
            // TinkerManager.installTinker(this); 替换成下面Bugly提供的方法
            Beta.installTinker(this);
        }
    
        @TargetApi(Build.VERSION_CODES.ICE_CREAM_SANDWICH)
        public void registerActivityLifecycleCallback(Application.ActivityLifecycleCallbacks callbacks) {
            getApplication().registerActivityLifecycleCallbacks(callbacks);
        }
    }
    

    5.AndroidManifest.xml配置
    权限

    <uses-permission android:name="android.permission.READ_PHONE_STATE" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
    <uses-permission android:name="android.permission.READ_LOGS" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    
    

    activity

    <activity
        android:name="com.tencent.bugly.beta.ui.BetaActivity"
        android:configChanges="keyboardHidden|orientation|screenSize|locale"
        android:theme="@android:style/Theme.Translucent" />
    
    

    fileprovider

            <provider
                android:name="android.support.v4.content.FileProvider"
                android:authorities="${applicationId}.fileProvider"
                android:exported="false"
                android:grantUriPermissions="true">
                <meta-data
                    android:name="android.support.FILE_PROVIDER_PATHS"
                    android:resource="@xml/provider_paths" />
            </provider>
    
    

    在res目录新建xml文件夹,创建provider_paths.xml文件如下:

    
    <?xml version="1.0" encoding="utf-8"?>
    <paths xmlns:android="http://schemas.android.com/apk/res/android">
        <!-- /storage/emulated/0/Download/${applicationId}/.beta/apk-->
        <external-path name="beta_external_path" path="Download/"/>
        <!--/storage/emulated/0/Android/data/${applicationId}/files/apk/-->
        <external-path name="beta_external_files_path" path="Android/data/"/>
    </paths>
    
    

    6.混淆配置

    为了避免混淆SDK,在Proguard混淆文件中增加以下配置:

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

    如果你使用了support-v4包,你还需要配置以下混淆规则:

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

    相关文章

      网友评论

        本文标题:Bugly多渠道更新+热修复 集成记录

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