• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Is possible to convert apk file to jar file and run it on window with java run time?

I have a apk file, it is a game. I want to convert my apk game to a java game ( jar excutable ) and run it on window with java run time. Like this site have so much java game: <moderator redacted link> . I want to create a java game from a apk file. Is this possible. How to do that.
 
Last edited by a moderator:
I have moved your question to the Application Development Forum so that our experienced developers can help you. I hope you get the answer you're looking for. Cheers :)
 
No you can't do that. APKs are designed to run on the Android platform, which uses a modified JVM called Dalvik. The compiled code is in 'Dex' format. Plus all the runtime framework libraries are specific to Android.
 
Back
Top Bottom