android 反编译Dex2jar

来源:互联网 发布:淘宝网抹胸连衣裙 编辑:程序博客网 时间:2024/06/05 09:10

dex2jar 源码及编译

1、get source

by Mercurial
hg clone -b 2.x http://hg.code.sf.net/p/dex2jar/code dex2jar-2.x
by Git
git clone -b 2.x https://github.com/pxb1988/dex2jar.git dex2jar-2.x

2、build the project

by Maven
cd dex2jar-2.x
mvn clean package
if build successfull, the zip file is under dex-tools/target/
by Gradle
cd dex2jar-2.x
gradle clean distZip
if build successfull, the zip file is under dex-tools/build/distributions/

https://github.com/pxb1988/dex2jar/issues/93