热更新坑:
在使用热更新时有两种方式进行初始化,一种是高消耗型的,一种是低消耗型,当然我们是使用低消耗的,在使用过程中打包老是遇到未匹配到可运用补丁包的App版本,请确定补丁包的基线版本是否已发布,这个原因有很多种,一在你的配置tinker-support.gradle中的tinkerSupport添加 (// tinkerEnable功能开关tinkerEnable = true即可)还有就是采用低消耗必须(// 是否开启反射Application模式enableProxyApplication = true)官方给出的是false 不采用反射,那样的话,打包时就会直接报错,剩下的那些按官网给的复制粘贴就可以了,记得(tinkersupport.gradle)跟app是同级目录,注意这里采用正式签名文件,没正式签名时也会报错,我试了,具体什么原因,
正在查询...,第一次打基线包(生成app文件夹名字复制在def baseApkDir替换掉,再打包)时再手机上运行,看提示信息,有success就成功了,之后再打patch包正式签名的就ok,有什么错误欢迎指正:
配置
apply plugin: 'com.tencent.bugly.tinker-support'
def bakPath = file("${buildDir}/bakApk/")
/**
此处填写每次构建生成的基准包目录
*/
def baseApkDir = "app-0103-09-36-06"
/**
对于插件各参数的详细解析请参考
*/
tinkerSupport {
// 开启tinker-support插件,默认值trueenable = true// tinkerEnable功能开关tinkerEnable = true// 指定归档目录,默认值当前module的子目录tinkerautoBackupApkDir = "${bakPath}"// 是否启用覆盖tinkerPatch配置功能,默认值false// 开启后tinkerPatch配置不生效,即无需添加tinkerPatchoverrideTinkerPatchConfiguration = true// 编译补丁包时,必需指定基线版本的apk,默认值为空// 如果为空,则表示不是进行补丁包的编译// @{link tinkerPatch.oldApk }baseApk = "${bakPath}/${baseApkDir}/app-release.apk"// 对应tinker插件applyMappingbaseApkProguardMapping = "${bakPath}/${baseApkDir}/app-release-mapping.txt"// 对应tinker插件applyResourceMappingbaseApkResourceMapping = "${bakPath}/${baseApkDir}/app-release-R.txt"// 构建基准包和补丁包都要指定不同的tinkerId,并且必须保证唯一性tinkerId = "base-1.0.1"// 构建多渠道补丁时使用 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 = falseuseSign = truedex { 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的分配}
}
代码:
public class SampleApplication extends Application {
@Overridepublic void onCreate() { super.onCreate(); // 这里实现SDK初始化,appId替换成你的在Bugly平台申请的appId // 调试时,将第三个参数改为true Bugly.init(this, "填写appid", false); }@Overrideprotected void attachBaseContext(Context base) { super.attachBaseContext(base); // you must install multiDex whatever tinker is installed! MultiDex.install(base);
// 安装tinker Beta.installTinker(); }
}
清单文件
<activity
android:name="com.tencent.bugly.beta.ui.BetaActivity" android:configChanges="keyboardHidden|orientation|screenSize|locale" android:theme="@android:style/Theme.Translucent" /> <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>