A kotlin/java library to use ApkTool programatically and provides good api
currently apktool's maven build are broken and its api aren't that good to be used as library
- apk signing via uber-apk-signer
- inject permission to
AndroidManifest.xml
full example of usage here
- add
maven { url "https://jitpack.io" }
insettings.gradle
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
}
add to your app's build.gradle
dependencies {
implementation 'com.github.KuhakuPixel:Apktool-Kotlin:0.0.2'
}