Tools to work with android .dex and java .class files
Go to file
Nico Mexis f30b40c31e Better warning
# Conflicts:
#	dex-reader/src/main/java/com/googlecode/d2j/reader/DexFileReader.java
2023-08-31 11:22:18 +08:00
.github/workflows move to github (#512) 2021-10-29 23:33:24 +08:00
d2j-base-cmd remove maven pom.xml 2018-04-02 16:44:36 +08:00
d2j-jasmin Update ASM to 9.5, drop AsmBridge (#591) 2023-08-30 21:25:55 +08:00
d2j-smali Fix grammar & typo 2021-10-31 02:33:21 +08:00
dex-ir fix ClassCastException 2021-10-31 03:32:55 +08:00
dex-reader Better warning 2023-08-31 11:22:18 +08:00
dex-reader-api Better warning 2023-08-31 11:22:18 +08:00
dex-tools Update ASM to 9.5, drop AsmBridge (#591) 2023-08-30 21:25:55 +08:00
dex-translator Update ASM to 9.5, drop AsmBridge (#591) 2023-08-30 21:25:55 +08:00
dex-writer remove maven pom.xml 2018-04-02 16:44:36 +08:00
gradle/wrapper update to gradle 6.9.1 2021-10-29 23:04:52 +08:00
.travis.yml use jdk8 for travis 2018-04-02 16:31:28 +08:00
build.gradle java 8 now 2021-10-30 00:31:35 +08:00
gradlew update to gradle 6.9.1 2021-10-29 23:04:52 +08:00
gradlew.bat update to gradle 6.9.1 2021-10-29 23:04:52 +08:00
LICENSE.txt add notice and lincense 2014-10-27 20:51:16 +08:00
NOTICE.txt cherry-pick form 2021-10-31 01:38:00 +08:00
README.md move to github (#512) 2021-10-29 23:33:24 +08:00
settings.gradle Remove Java 6 compat 2021-10-31 02:02:46 +08:00

dex2jar

Project move to GitHub

_ Mirror Wiki Downloads Issues
gh https://github.com/pxb1988/dex2jar Wiki Releases Issues
sf https://sourceforge.net/p/dex2jar old old old
bb https://bitbucket.org/pxb1988/dex2jar old old old
gc https://code.google.com/p/dex2jar old old old

Tools to work with android .dex and java .class files

  1. dex-reader/writer: Read/write the Dalvik Executable (.dex) file. It has a light weight API similar with ASM.
  2. d2j-dex2jar: Convert .dex file to .class files (zipped as jar)
  3. smali/baksmali: disassemble dex to smali files and assemble dex from smali files. different implementation to smali/baksmali, same syntax, but we support escape in type desc "Lcom/dex2jar\t\u1234;"
  4. other tools: d2j-decrypt-string

Usage

  1. In the root directory run: ./gradlew distZip
  2. cd dex-tools/build/distributions
  3. Unzip the file dex-tools-2.1-SNAPSHOT.zip (file size should be ~5 MB)
  4. Run d2j-dex2jar.sh from the unzipped directory

Example usage:

sh d2j-dex2jar.sh -f ~/path/to/apk_to_decompile.apk

And the output file will be apk_to_decompile-dex2jar.jar.

Need help ?

post on issue trackers list above.

License

Apache 2.0