apk to dex conversion
How to convert .apk file开发者_C百科s to .dex files?
Please help.
- Rename the .apk to .zip
- Extract the files from the zip
- In the extracted files, you will get your desired dex file
Why would you need the dex file though? Its byte code file for dalvik VM.
An APK is actually a ZIP file. So you can decompress it with:
unzip app.apk
The DEX file is in the decompressed folder.
From your question I think now you are done. Decompiling the DEX file is another story.
Here you can find a dissambler: http://code.google.com/p/smali/ And in this two post you can get more information about the process: http://zeaster.blogspot.com/2007/11/how-to-decompile-dex-file-on-android_28.html http://mylifewithandroid.blogspot.com/2009/01/disassembling-dex-files.html
精彩评论