- Loading...
Before trying to cross build for iOS we strongly recommend that you succeed on building OpenJFX for OS X first.
...
Code Block | ||
---|---|---|
| ||
$ gradle -PCOMPILE_TARGETS=ios -PUSE_LIPO=true -PIOS_VERSION=6.1 |
Get robovm-jfx78-compat project and build it
On the same directory where Calculator.zip was unzipped:
Code Block | ||
---|---|---|
| ||
$ git clone https://github.com/robovm/robovm-jfx78-compat $ cd robovm-jfx78-compat $ mvn install |
Build the application code
On the same directory where Calculator.zip was unzipped:
...
Code Block | ||
---|---|---|
| ||
$ cd Calculator $ ant |
...
This will compile the java code to byte code, the then it will use RoboVM to compile the byte code to native code and finally it will run the application using iPad simulator.
...