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}"
}