美文网首页
集成bugly热更新使用心得

集成bugly热更新使用心得

作者: zhangchunlin | 来源:发表于2019-05-27 12:02 被阅读0次

    第一步:添加插件依赖

    工程根目录下“的build.gradle”文件中添加:

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

    第二步:集成SDK

    在app module的“build.gradle”文件中添加(示例配置):

    apply plugin: 'com.android.application'
    apply from: 'tinker.gradle'
    android {
        compileSdkVersion 28
        defaultConfig {
            applicationId "top.andnux.bugly2"
            minSdkVersion 19
            targetSdkVersion 28
            versionCode 1
            versionName "1.0"
            signingConfig signingConfigs.debug
            testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
        }
       //1.注意 一定要配置正式签名 
        signingConfigs {
            release {
                storeFile file('bugly.jks')
                storePassword '123456'
                keyAlias = '123456'
                keyPassword '123456'
            }
        }
        buildTypes {
            debug {
                minifyEnabled false
                proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
            }
            // 2 启用混淆
            release {
                minifyEnabled true
                signingConfig signingConfigs.release
                proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
            }
        }
    }
    
    dependencies {
        implementation fileTree(dir: 'libs', include: ['*.jar'])
        implementation 'androidx.appcompat:appcompat:1.0.2'
        implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    
        // 添加依赖
        implementation "com.android.support:multidex:1.0.3"
        implementation 'com.tencent.bugly:crashreport_upgrade:1.3.6'
        implementation 'com.tencent.tinker:tinker-android-lib:1.9.9'
        implementation 'com.tencent.bugly:nativecrashreport:3.7.1' 
    
        testImplementation 'junit:junit:4.12'
        androidTestImplementation 'androidx.test:runner:1.1.1'
        androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
    }
    

    第三步:tinker-support.gradle内容如下所示(示例配置):

    apply plugin: 'com.tencent.bugly.tinker-support'
    def bakPath = file("${projectDir.getAbsolutePath()}/bakApk/")
    /**
      1.发补丁包的使用要修改基准包
     * 此处填写每次构建生成的基准包目录
     */
    def baseApkDir = "app-0527-11-19-08"
    /**
     * 对于插件各参数的详细解析请参考
     */
    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"
        // 2 构建基准包和补丁包都要指定不同的tinkerId,并且必须保证唯一性
        tinkerId = "base-1.0.2"
        // 构建多渠道补丁时使用
        // buildAllFlavorsDir = "${bakPath}/${baseApkDir}"
        // 是否启用加固模式,默认为false.(tinker-spport 1.0.7起支持)
        // isProtectedApp = true
        // 是否开启反射Application模式
        enableProxyApplication = true
        // 是否支持新增非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的分配
        }
    }
    

    第四步:初始化SDK

    enableProxyApplication = true的情况

    public class MyApplication extends Application {
        @Override
        public void onCreate() {
            super.onCreate();
            // 这里实现SDK初始化,appId替换成你的在Bugly平台申请的appId
            // 调试时,将第三个参数改为true
            Bugly.init(this, "900029763", false);
        }
        @Override
        protected void attachBaseContext(Context base) {
            super.attachBaseContext(base);
            // you must install multiDex whatever tinker is installed!
            MultiDex.install(base);
            // 安装tinker
            Beta.installTinker();
        }
    }
    

    第五步:AndroidManifest.xml中配置

        <application
            android:name=".MyApplication"
            android:allowBackup="false"
            android:icon="@mipmap/ic_launcher"
            android:label="@string/app_name"
            android:roundIcon="@mipmap/ic_launcher_round"
            android:supportsRtl="true"
            android:theme="@style/AppTheme">
            <activity android:name=".MainActivity">
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
                    <action android:name="android.intent.action.VIEW" />
                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
            </activity>
    注:1.3.1及以上版本,可以不用进行以上配置,AAR已经在AndroidManifest配置了,并且包含了对应的资源文件。
    

    第六步:混淆配置

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

    结束语

    基于bugly的热更新就集成结束了,如还有不清楚的地方可以参考https://bugly.qq.com/docs/user-guide/instruction-manual-android-hotfix/?v=20181014122344

    相关文章

      网友评论

          本文标题:集成bugly热更新使用心得

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