Last active
January 27, 2022 13:26
-
-
Save abhishek17569/79474d3422c7d5af4ccb055d9806237c to your computer and use it in GitHub Desktop.
Edit Jar Files
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
## Tools | |
1. enjarify | |
> Convert dex to jar | |
3. Krakatau || https://github.com/Storyyeller/Krakatau | |
> Decompile the jar | |
3. Android SDK | |
4. Python 2 | |
5. Winrar 7zip | |
6. JDK 8 | |
## Guide | |
1. First let's convert classes.dex to jar | |
```enjarify classes.dex -o classes.jar``` | |
> I'am gonna assume you already download and copy the Krakatau decompiler | |
2. Then decompile the classes.jar and include any libraries | |
```py -2 Krakatau/decompile -out decompiled classes.jar -path "path to rt.jar" -path "path to android.jar"``` | |
3. Then copy the .java file that you modify to the folder that contains classes.jar | |
4. After copying then let's compile it | |
```javac -classpath classes.jar;pathtoandroid.jar modifiedClass.java``` | |
5. Open classes.jar with Winrar then replace the class that you want to modify with the compiled modified class | |
6. Then Convert jar file to classes.dex | |
```dx -JXmx2G --dex --output=classes.dex classes.jar``` | |
7. Done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment