How to create and Android APK from an existing Java Desktop project?
Answered
I'm noob both in Java and Intellij.
I created a simple game in Java using the default interface graphic interface (javax.swing), and this game is now running ok on Windows.
Now I would like to convert this project to Android.
But I can not find a tutorial that teaches this.
So I would like to know if anyone could describe to me what steps I have to take to convert this simple Java project to Android?
Please sign in to leave a comment.
There is no straightforward way of doing this since Android doesn't have Swing. You will have to rewrite your code for Android APIs. Game logic and some other things can be reused.
http://stackoverflow.com/ would be a better place for such questions.