美团热更新实践

1.在App的build.gradle,加入如下配置

//apply plugin: 'auto-patch-plugin'//制作补丁时使用

apply plugin: 'robust'//打包时使用


dependencies {

compile 'com.meituan.robust:robust:0.3.8'//需要的依赖库

}

2.在整个项目的build.gradle加入classpath如下

buildscript {

repositories {

jcenter()

}

dependencies {

classpath 'com.meituan.robust:gradle-plugin:0.3.8'

classpath 'com.meituan.robust:auto-patch-plugin:0.3.8'

}

}

3.然后在自己的引导页面或主页书写加载执行补丁的代码

注**如果你是测试你可以在本地加载补丁   如果你是要上线使用建议直接让后台写个接口供你提交和下载补丁

以下是我直接请求网络加载补丁的代码仅供参考

private voidrunRobust() {

try{

String destFileDir= Environment.getExternalStorageDirectory().getPath()+ File.separator+"robust";

File file=newFile(destFileDir);

if(file .exists()  && file .isDirectory()){

FileManager.deleteFolderFile(destFileDir,true);

}

}catch(Exception e){

}

MyHttp http=newMyHttp(this);

http.downloadbug(this,"你的补丁下载地址",newHttpCallBack(){

@Override

public voidonSuccess(String t) {

super.onSuccess(t);

newPatchExecutor(getApplicationContext(),newPatchManipulateImp(),newCallback()).start();

setAnim();

}

@Override

public voidonFailure(interrorNo, String strMsg) {

super.onFailure(errorNo, strMsg);

setAnim();

}

});

}

//补丁加载成功失败的回调

classCallbackimplementsRobustCallBack {

@Override

public voidonPatchListFetched(booleanresult,booleanisNet, List patches) {

System.out.println("《《《《robust arrived in onPatchListFetched");

}

@Override

public voidonPatchFetched(booleanresult,booleanisNet, Patch patch) {

System.out.println("《《《《robust arrived in onPatchFetched");

}

@Override

public voidonPatchApplied(booleanresult, Patch patch) {

System.out.println(" robust arrived in onPatchApplied ");

}

@Override

public voidlogNotify(String log, String where) {

System.out.println(" robust arrived in logNotify "+ where);

}

@Override

public voidexceptionNotify(Throwable throwable, String where) {

throwable.printStackTrace();

System.out.println(" robust arrived in exceptionNotify "+ where);

}

}

可以使用以下代码直接加载本地的补丁

new PatchExecutor(上下文,xxx,callback我也懂).start()

new PatchExecutor(getApplicationContext(), new PatchManipulateImp(), newCallback()).start();

adb push G:\meituan\patch.jar /sdcard/robust/patch.jar//本地测试用

4.需要手动copy一份DEMO中或下面我的文件robust.xml的配置文件到app的目录下,该文件各个配置注释的很清楚,若没特殊要求,需要修改

请按需修改

5.运行生成apk的命令

执行打包命令:

gradlew clean  assembleRelease --stacktrace --no-daemon

注:不想使用命令生成的也可以通过打成正式包来生成apk

6.apk生成成功后找到build/outputs/robust/methodsMap.robust,build/outputs/mapping/mapping.txt(需要开启混淆后才会出现此文件),我们需要自己分别拷贝到app/robust下,在app目录新建个叫robust的文件夹,把这两个文件放进去就ok了。

保存好现有的工程及robust下的文件  最好是备份下传到百度网盘或自己的硬盘上当我们的程序出现问题需要更新的时候我们要通过我们的这个工程进行修改打补丁提交补丁来实现热更新的。

7.程序上线一段后,我们要生成补丁patch.jar来更新代码了

我们可以在备份的代码中进行更改和添加数据  更改后的方法上要加上注解  @Modify

添加了新的方法后 添加注解 @Add   有Lambda的需要添加 RobustModify.modify()


美团热更新实践_第1张图片


修改好后,我们就可以把 //apply plugin: 'auto-patch-plugin'  打开

之后再在终端执行一遍生成apk的命令行。直到终端那里出现 auto patch endsuccessfully(最后 build failed 是正常的,别紧张孩子)。再然后就是要把patch.jar push 到手机目录路径下或者上传到你们的服务器。




你可能感兴趣的:(美团热更新实践)