Releases: mcxinyu/Android-So-Handler
Releases · mcxinyu/Android-So-Handler
2.0.0-fix-2
Full Changelog: 2.0.0...2.0.0-fix-2
2.0.0
0.0.9-fix10
- 使用 apktool 对 so 文件进行处理,以修复使用 zip 重新组建 apk 后, raw 中 mp3 类资源压缩异常问题
- 优化
excludeBuildTypes
的匹配
0.0.9-fix6
- 修改让 AssetsSoLoadBy7zFileManager.init 的回调更合理
- 添加移除 so 回调,让业务端可以有在打包过程中上传 so 到云端的机会
- 上传文件增加 url 字段存储,方便业务端下载
0.0.9-fix4
- 修复 Windows 环境
signApk.renameTo()
重命名 apk 文件失败的问题 - 修复多个 abi 的时候,生成的 info.json 前一个 abi 类型会替换后一个 abi 类型的问题
- 备份移除的 so 以便业务端可以上传
- 添加源码到依赖,方便调试
0.0.9-fix1
此仓库在原有仓库基础上修复了一些问题
- 修复了 A dependency must not be empty #3
- 将仓库接入 Jitpack,不用再复制
maven
文件了
Jitpack 接入方式
因为接入 Jitpack 后,暂时没有合并到主仓库,所以接入方式(maven 仓库链接)需要先按下面方法修改,其他的依旧按原仓库说明操作。
buildscript {
repositories {
maven("https://jitpack.io")
}
dependencies {
// ...
if (userSoPlugin) {
classpath("com.github.mcxinyu.Android-So-Handler:load-hook-plugin:${Versions.so_plugin_version}")
classpath("com.github.mcxinyu.Android-So-Handler:file-plugin:${Versions.so_plugin_version}")
}
}
}
repositories {
maven("https://jitpack.io")
}
dependencies {
implementation "com.github.mcxinyu.Android-So-Handler:load-hook:${Versions.so_plugin_version}"
implementation "com.github.mcxinyu.Android-So-Handler:load-assets-7z:${Versions.so_plugin_version}"
}