From 3aecd1a94c42101218447dd1157d29db716b803f Mon Sep 17 00:00:00 2001 From: REAndroid Date: Thu, 29 Dec 2022 05:17:31 -0500 Subject: [PATCH] Apply maven dependency --- README.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) 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)