v1.9.14.6
注意:
如果接入此版本后编译时报如下错误:
More than one file was found with OS independent path 'META-INF/proguard/androidx-annotations.pro'
在 app 工程的 build.gradle 中加入以下内容即可解决问题:
android {
packagingOptions {
exclude 'META-INF/proguard/androidx-annotations.pro'
}
}
Bugfix & ChangeLog
- 修复漏传 dexOptDir 导致 Android N 上卡顿,以及 ClassLoader Hack 新方案导致的部分 Android Q 机型卡顿的问题。
- 使用新方法解决 Android Q 上 Verify Class 导致的卡顿问题,不再引入 parent PathClassLoader,避免部分框架出现问题。( 这样一来 @yuany 的变更就没机会起作用了,不过还是感谢提交 ci 哇)
- 修复了华为方舟补丁接口
isArkHotRuning
总是返回 false 的问题。 - 修复了 Gradle 6 和 AS 4.0 下的一些兼容性问题。(感谢 @fmoda3 )
- Tinker 运行时库改用 androidx 作为 support 库。(感谢 @fmoda3 )