Apply maven dependency

This commit is contained in:
REAndroid 2022-12-29 05:17:31 -05:00
parent e8e3e376a1
commit 3aecd1a94c

View File

@ -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)