WandFix是一个基于java ClassLoader实现的热修复框架。
效果展示:
优点:
- 类似于黄油刀可以直接对成员变量添加@InjectObject("com.example.motordex.AppParsenterImpl2")注解,来绑定热修复包中的实现类。
- 无需关闭应用即可使修复包生效。
- 与mvp模式搭配使用效果最佳。
- 可以自己定义需要热修复的类。
- 可以自己配置dex加密算法,保护dex文件的安全。
- 可以通过注解单独设置某个对象是否禁用双亲委托。
使用
使用方法:
git clone https://github.com/miqt/WandFix.git
添加依赖:
compile project(‘:wand‘)
annotationProcessor project(‘:wand-compiler‘)
代码调用:
public class MainActivity extends AppCompatActivity {
@InjectObject(
"com.example.motordex.AppParsenterImpl2"//热修复包中的实现类
)
AppParsenter ap;
@InjectObject(
value = "com.example.motordex.AppParsenterImpl2",//热修复包中的实现类
level = ParentalEntrustmentLevel.PROJECT//启用双亲委托,优先加载本地类
)
AppParsenter ap;
@Override
protected void onCreate(Bundle savedInstanceState) {
...
//初始化,可以放在application中调用一次即可
Wand.init(this);
//单个参数
ClassInstall.inject(this);
//多个参数的构造方法
//Map<String, Object[]> map = new HashMap<>();
//map.put("com.example.motordex.AppParsenterImpl2", new Object[]{1, "参数2", "参数3"});
//ClassInstall.inject(this, map);
//调用
String str = ap.getStr();
Toast.makeText(this, str, Toast.LENGTH_SHORT).show();
...
}
}
创建并启用热修复包
创建热修复包非常简单。
- 在编辑器中对类参数添加注解
class A{
@InjectObject(
value = "com.example.motordex.AppParsenterImpl",
level = ParentalEntrustmentLevel.NEVER)
AppParsenter ap;
}
- 在android studio 中点击 Build >> Make Project , 就会在项目的根目录生成 make_fix_pack.bat 批处理脚本。文本编辑器打开之后类似于这样:
cd ./app/build/intermediates/classes/debug/
jar cvf hotfix_pack.jar ./com/example/motordex/AppParsenterImpl.class
dx --dex --output=../../../../../hotfix_pack.dex hotfix_pack.jar
- 运行 make_fix_pack.bat 批处理脚本,可以通过找到这个脚本文件直接双击或者在终端中运行,运行之后就可以在项目根目录找到 hotfix_pack.dex 文件,这个就是热修复包了。
- 通过服务器吧这个 hotfix_pack.dex 文件下发下去,当程序运行到
Wand.with(this).init().attachDex(new File("该文件存储路径"));
的时候,这个热修复包就被应用到程序中去了。
具体更多用法及其实现原理请移步GitHub·Wiki
欢迎提出问题和宝贵意见。如果您觉得这个项目还不错,就点个star吧( ̄▽ ̄)~*
原文地址:https://www.cnblogs.com/miqt/p/10208144.html
时间: 2024-11-08 23:30:24