i want to get source code from apk and use this solution Is there a way to get the source code from an APK file?
i try to dex file to jar and i used dex2jar; but cmd cannot recognize this command.
dex2jar classes.dex
"dex2jar is not recognized as an internal or external command"
is dex2jar deprecated?
what can i use to convert dex to jar?
None of the above answers worked for me, I was able to get it working in the following way, There is no need of the classes.dex file. So follow the following instructions carefully:
drop your apk file inside the dex2jar folder.
open command prompt[win user] and navigate to that folder where you dropped the apk file.
enter this command d2j-dex2jar.bat someApk.apk
and you will get the jar file[read the jar file using jd-ui tool]
for mac users refer this[point 4 in the link] for suitable terminal command http://sourceforge.net/p/dex2jar/wiki/UserGuide/