Run JavaFX application on Android [closed]

0

I have a desktop application that uses JavaFx and would like to make it run on tablets, does anyone have a tip?

    
asked by anonymous 27.11.2014 / 12:54

1 answer

1

There is the JavaFX ports project

link

Tutorial:

link

Android: You need:

  • Your JavaFX application, built as JAR, for example, /path/to/your/app/yourapplication.jar. The resulting application must be in the Java 7 (or Java 6) class format all the libraries that you depend on, in the same directory. These libraries should contain the Java 6/7 classes too (without Java 8 for now)

  • The Android SDK, in / path / to / androidSDK. Download this link . In order to be able to use the Android Gradle plugin, you need at least 21 API version and 21.1.1 build tools

  • The Dalvik JavaFX SDK, which can be downloaded from link The Gradle compilation system

27.11.2014 / 13:09