标签:.sh proc oid 文本编辑 prot creat 文本编辑器 ted debug
WandFix是一个基于java ClassLoader实现的热修复框架。
效果展示:
优点:
使用方法:
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;
}
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吧( ̄▽ ̄)~*
一款超级简单易用的Android热修复框架 WandFix 使用详解
标签:.sh proc oid 文本编辑 prot creat 文本编辑器 ted debug
原文地址:https://www.cnblogs.com/miqt/p/10208144.html