Possible Duplicate:
apk to jar convertor
In order to have a multiplatform application, i have a question a little special:
It’s how to convert the file “APK” to “JAR”.
Thanks for all
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
dex2jar converts
.apkto.jar, but you still have.classfiles in there. Those that do not link to the Android framework (which are probably only a few utility classes) should be reusable for another platform.Using jd-gui you can even look at the java code (most of the time at least)
And if you want to extract the resources (you probably need to images too if you want to “convert” it to a different platform) apktool
But there is absolutely no way to take an .apk and run it through a converter and have a Windows program.