之前一直会做一个个APP往手机上装,一直不会对同一个APP进行迭代,这是第一次使用第三方的热更新工具进行迭代版本,算是一次练手与熟悉新技能吧~
一、注册阿里云用户
二、申请开发资格
1、RSA密钥
2、appId
3、AppSecret
三、根据开发文档一步步配置应用
https://help.aliyun.com/document_detail/53238.html?spm=5176.product51340.6.545.I4QU7B
四、生成补丁并调试
Mac版本打包工具地址:http://ams-hotfix-repo.oss-cn-shanghai.aliyuncs.com/SophixPatchTool_macos.zip
Windows版本打包工具地址:http://ams-hotfix-repo.oss-cn-shanghai.aliyuncs.com/SophixPatchTool_windows.zip
Linux版本打包工具地址:http://ams-hotfix-repo.oss-cn-shanghai.aliyuncs.com/SophixPatchTool_linux.zip
调试工具地址:http://ams-hotfix-repo.oss-cn-shanghai.aliyuncs.com/hotfix_debug_tool-release.apk
五、上传补丁并拉取
补丁上传到控制台。APP拉取补丁用SophixManager.getInstance().queryAndLoadNewPatch()方法。
六、注意事项
1、上传至控制台的补丁与appVersion的版本号一致
2、导入jar包时一定导入aar包,并在build.gradle里添加
buildscript {
repositories {
flatDir {
'libs'
}
}
}