Black Coffee

Using UNDX to Decompile Android dex bytecode 본문

프로그래밍/Android

Using UNDX to Decompile Android dex bytecode

블랙커피&B 2010. 3. 23. 16:51
반응형

 

1. Get dexdump.exe from http://dex-decomplier.googlecode.com/files/dexdump.zip

2. Get UNDX tool undx.jar from http://www.illegalaccess.org/undx/

3. Convert dex bytecode to java bytecode using

java -DASDKLoc={Location of dexdump} -jar undx.jar {dexfile}

this tool generate dex dump file {dexfile.dump} and java bytecode archive {dexfile.jar}.

4. Get Java Decompiler JD-GUI from http://java.decompiler.free.fr/?q=jdgui and use it to decompile {dexfile.jar}

반응형

'프로그래밍 > Android' 카테고리의 다른 글

Open GL ES 2.0 Programing Guide  (0) 2011.03.11
안드로이드 에뮬레이터에서 OpenGL ES 2.0 미지원  (0) 2011.03.02
Android Packaging Problem  (0) 2011.02.05
R.JAVA 재생성 문제  (2) 2010.04.22
Android Paint Align  (0) 2010.04.12
Comments