Are the users able to convert the apk file of my application back to the actual code? If they do - is there any way to prevent this?
|
|
First, an apk file is just a modified jar file. So the real question is can they decompile the dex files inside. The answer is sort of. There are already disassemblers, such as dedexer and smali. You can expect these to only get better, and theoretically it should eventually be possible to decompile to actual Java source (at least sometimes). See the previous question decompiling DEX into Java sourcecode. What you should remember is obfuscation never works. Choose a good license and do your best to enforce it through the law. Don't waste time with unreliable technical measures. |
|||||||||
|
|
ApkTool to view resources inside APK File
Using dex2jar
Decompiling .jar using JD-GUI
|
|||||||||||
|
|
Use my shell di compiler tool will do it automatically |
|||
|
|
|
Shameless plug, I just created an open-source package that manages the APK decompilation process at https://github.com/lxdvs/apk2gold. It attempts to recreate the source/res structure as accurately as possible. |
|||
|
|
|
I think its possible using dex2jar and gd-gui for resource extraction you may change the extension of the apk to zip. but the code decompiled using dex2jar will not be the same as the original since Android uses proGuard by default |
|||
|
|