-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
# ARSCTool | ||
### Handy tool to convert from android resources.arsc to XML and build back to .arsc format | ||
### Totaly independent of aapt and aapt2 | ||
### 100% java | ||
* Handy tool to convert from android resources.arsc to XML and build back to .arsc format | ||
* Totaly independent of aapt and aapt2 | ||
* 100% java | ||
|
||
java -jar arsctool.jar d -i <path to resources.arsc file> -o <path to output directory> | ||
java -jar arsctool.jar b -i <path to xml's directory> -o <output path to resources.arsc file> | ||
```console | ||
java -jar arsctool.jar d -i <path to resources.arsc file> -o <path to output directory> | ||
java -jar arsctool.jar b -i <path to xmls directory> -o <output path to resources.arsc file> | ||
|
||
Example-1: | ||
java -jar arsctool.jar d -i /path/dir/resources.arsc -o /path/dir/out | ||
``` | ||
|
||
## Download | ||
|
||
Example-2: | ||
java -jar arsctool.jar b -i /path/dir/xml_dir -o /path/dir/out/resources.arsc | ||
|
||
### [Jar file](https://github.com/kikfox/ARSCTool/releases/tag/v0.0.1) | ||
|
||
|
||
## Source code | ||
Will be realeased soon | ||
* Will be realeased soon |