tinker
tinker copied to clipboard
Tinker is a hot-fix solution library for Android, it supports dex, library and resources update without reinstall apk.
请问一下 现在有版本支持AGP8.1的编译吗 生成补丁包 报错 Check for loader classes in dex: classes.dex Collect class descriptors in classes.dex Check for loader classes in dex: classes2.dex Collect class descriptors in classes2.dex Check for...
```kotlin class Application : TinkerApplication("com.xxx.xxx.ApplicationLike"){ fun printLog() { Log.d("Application", "Application") } } ``` 外部调用Application 方法: ```kotlin (application as Application).printLog() ``` 全量的两个apk包都不会有问题,但是补丁包加载后,这里会crash FATAL EXCEPTION: main Process: com.xxx.sample.hotfix, PID: 27752 java.lang.ClassCastException: com.xxx.sample.hotfix.app.Application...
Direct Boot模式下无法访问CE内存,造成Direct Boot模式下启动的app进程无法被补丁包修改
在频繁开关wifi数次后,调用TinkerInstaller.onReceiveUpgradePatch。无任何合成过程日志输出,adb显示TinkerPatchService没有启动,patch进程已启动
我们主要涉及Android原生开发,会更新动态库,请问tinker对动态库的热更有什么限制吗?