diff --git a/README.md b/README.md index 1c48743..ec1e3c6 100755 --- a/README.md +++ b/README.md @@ -12,10 +12,25 @@ This library is developed based on AOSP structure of androidfw/ResourceTypes.h , #### Convert from/to XML string (for un-obfuscated resources) * Decodes resources to source code -* Encodes/Builds source XML to binary resources +* Encodes/Builds source XML to binary resources #### Works on all java supported platforms (Android, Linux, Windows) * Use the jar file as dependency + +```gradle +dependencies { + implementation(files("$rootProject.projectDir/libs/ARSCLib.jar")) +} +``` +* Maven + ```gradle +repositories { + mavenCentral() +} +dependencies { + implementation("io.github.reandroid:ARSCLib:1.+") +} +``` #### Check this tool developed using this library [https://github.com/REAndroid/APKEditor](https://github.com/REAndroid/APKEditor)