1.確保使用最新版本bugly、tinker
- 參考https://bugly.qq.com/v2/downloads 去配置最新版本號莲组,注意對應(yīng)關(guān)系
- 如下:
升級 SDK 包 1.4.2 2019-09-24
修復(fù)app下載后無法跳轉(zhuǎn)進app安裝界面
集成crash sdk 3.1.0
對應(yīng)tinker lib 1.9.14,tinker-support版本1.2.0
對應(yīng)關(guān)系如下:
implementation 'com.tencent.bugly:crashreport_upgrade:1.4.2'
implementation 'com.tencent.tinker:tinker-android-lib:1.9.14'
2.清單文件中application節(jié)點加入 android:usesCleartextTraffic="true"
- 允許9.0使用http
3.TinkerPatchException: loader classes are found in old secondary dex.錯誤解決
去項目的app\build\intermediates\tinker_intermediates目錄找出文件tinker_multidexkeep.pro 放到app文件夾,然后build.gradle的defaultConfig{}中添加一句
multiDexKeepProguard file('tinker_multidexkeep.pro')
即可解決主dex中找不到tinker加載類的問題