Friends of OpenJDK Today

How to Create Mobile Apps with JavaFX (Part 2)

June 18, 2021

Author(s)

  • Gail Anderson

    Gail is a Java Champion and Oracle Groundbreaker Ambassador. She is Director of Research and founding member of the Anderson Software Group, a leading provider of training courses in Java, ... Learn more

In Part 1, we introduced a mobile app game, TiltMaze, written completely in JavaFX, which you can download from either the Apple App Store or Google Play and install it on your mobile device or tablet.

In this article, we'll discuss the technologies we use with JavaFX to build the JVM byte code version as well as native images that target iOS and Android devices.

GluonFX plugin for Maven

Gluon (https://docs.gluonhq.com/) has a Maven plugin that lets you build native-image JavaFX applications targeting multiple platforms. While Java has always been about compiling Java byte code that runs in a Java Virtual Machine (JVM) anywhere and everywhere (Write Once, Run Anywhere), there are prohibitions with running byte code in the mobile environment. Besides the performance penalties of executing byte code in a virtual machine and the relatively long startup time, Apple prohibits JVM applications on mobile targets and Android Java is non-standard. If you choose to leave the JavaFX world for native toolkits, you need to acquire expertise in Objective C/Swift as well as the respective native UI toolkits to target these platforms. Spoiler alert: I didn’t do that!

Enter Gluon, JavaFX, and GraalVM. The GluonFX plugin leverages GraalVM, OpenJDK and OpenJFX (JavaFX) by compiling the Java client application and all its required dependencies into native code. The target platform directly executes the native application.

While putting together this series, Gluon has been busy updating their Gluon "Client" maven plugin. As of this week, the plugin is now known as the "GluonFX" plugin at the 1.0.0 version. We have updated this post, but, as always, refer to the docs at https://docs.gluonhq.com/#_gluonfx_plugin_for_maven. This is a major milestone for building native applications from Java and #JavaFX client apps for desktop, mobile and embedded.

GraalVM

What is GraalVM and why should I use it? GraalVM is a high-performance JDK distribution from Oracle designed to accelerate the execution of applications written in Java (and other JVM languages). GraalVM allows compiling Java applications ahead-of-time (AOT) into native executables for faster startup time and lower memory overhead. Gluon leverages the GraalVM Community Edition to build your mobile application to the target platform using AOT compilation and linking with native libraries. The package step builds the executable for the target device.

Gluon Substrate

If your head is spinning, wondering how to collect all the native libraries, signing requirements, and packaging details into one native executable, fear not! Gluon Substrate (with its GluonFX Maven plugin) pulls together the pieces and dependencies for you. Gluon Substrate lets you build a specific target package that includes all the necessary dependencies.

Here are the steps we took to build TiltMaze. 

We built our Maven-based JavaFX application from Gluon’s starter page: https://start.gluon.io/. This helpful interactive web page lets you specify the main mobile components for your application. Options include Glisten (Gluon’s mobile-friendly licensed-based skinned controls), Glisten Afterburner (light-weight dependency injection), Gluon Maps (integrate map functionality), Connect (data resources), CloudLink (connect your mobile application to the enterprise), and Attach (use low-level features of the mobile device in a device and OS-agnostic way). Some of these options require a license from Gluon, but Gluon offers a generous non-pay license for open source and student projects. This page also includes a helpful list of features you can leverage with your mobile application all summarized in one place.

We selected Glisten (to use the mobile-friendly skinned controls), Glisten Afterburner, FXML, and Attach and downloaded the resulting Maven project to our local work machine.

Note: Install maven here: https://maven.apache.org/install.html.

JVM Desktop

Although I use an IDE to edit my project, a command line interface performs all the builds to run and install the application. The first task is to build and run the application with regular byte code on the JVM for application design and debugging. My default host machine is Mac OSX with the standard JVM using the default installed (11+) Java and JavaFX. This is the environment we initially used to build and test TiltMaze; the build/run cycle is very fast and efficient for debugging. (For accelerometer testing, we built a small test program to react to the device readings and ran this test on the phone.)

Here is the maven command you run from the top-level directory of the TiltMaze project directory:

$ mvn javafx:run

At some point, though, you must test your application on the target hardware. Because native builds take much longer than Java byte code builds, you should perform as much coding, debugging, and testing as possible before you move to actual device testing.

iOS

Gluon provides documentation on what you need to build native iOS images. If your goal is to create an app that others can install from the App Store, you’ll need a Mac, Xcode (Apple’s development tool, free to install), an Apple Developer License ($99/year), and Apple signing certificates (one for installing on your own device for testing and a different one for uploading the application to the Apple Connect site).

Updates on building native images.

Gluon has leveraged GitHub Actions that allow you to build native images in a GitHub-hosted cloud environment using the required host operating system. This works for both iOS and Android targets, where the required hosts (Mac OSX and Linux, respectively) can be configured remotely through GitHub Actions.  We didn't go this route, but GitHub Actions provide a great alternative to building everything locally.

Before testing your app, it’s best to build a basic do-nothing Xcode project and install it on your device. This verifies that you have Xcode working with a valid apple ID and your signing certificate lets you install an app to your device.

Next, follow the documentation for the GluonFX plugin. This  plugin manages all the pieces for creating native images based on GraalVM JDK and Gluon Substrate from your Java/JavaFX source code.  Download and unpack GraalVM from the latest Gluon community edition, https://github.com/gluonhq/graal/releases/latest. For Mac and iOS, download graalvm-svm-darwin-gluon-21.1.0-dev.zip (or the most current release version).

Next, set environment variable GRAALVM_HOME to the GraalVM JDK:

$ export GRAALVM_HOME=/path/to/graalvm-svm-darwin-gluon-21.1.0-dev/Contents/Home

and set JAVA_HOME as well:

$ export JAVA_HOME=$GRAALVM_HOME

For IOS targets, use Homebrew to install the following packages:

$ brew install --HEAD libusbmuxd
$ brew install --HEAD libimobiledevice

The GluonFX plugin lets you define profiles, so you can specify the desired target in your build/run/install commands. When you build your project from Gluon’s starter page (https://start.gluon.io/), profiles for ios and android (as well as desktop) are predefined in the pom.xml file.

Here is the sequence we use to build and install/run TiltMaze on a connected iPhone. As before, we are in the top-level directory of the TiltMaze project.

$ mvn -Pios gluonfx:build

The build action performs a compile followed by a link. Next, connect your iPhone via USB to your Mac and run the following command.

$ mvn -Pios gluonfx:nativerun

This command both installs the application created by the build action and runs the application. At this point, standard output from System.out.println statements appear on the desktop console and any logging is written to log files in the appropriate target subdirectory. The application is installed on your phone, so you can also exit and re-run the application from the phone. Exiting the application, however, disconnects remote execution from the Mac console.

Note: If you're having issues getting a successful build or install, try

  • Turn on verbose mode in the gluonfx plugin.
                <artifactId>gluonfx-maven-plugin</artifactId>
                <version>${gluonfx.maven.plugin.version}</version>
                <configuration>
                    . . .
                    <verbose>true</verbose>
                </configuration>
  • Return to the Gluon Documents for the iOS platform to make sure your pom.xml file is configured correctly.

IOS Configuration

The GluonFX plugin builds all its output in the target subdirectory. In the process, it generates default configurations for ios-specific settings, such as file Default-Info.plist, and a complete icon set under subdirectory target/gluonfx/arm64-ios/gensrc/ios/. File Default-Info.plist is an XML-based file where you specify ios-specific features, such as support for portrait or landscape modes, or if your app uses the accelerometer, for example. 

The GluonFX plugin generates a default icon set for your application based on the Gluon icon. Since these default settings and icons are generated anew for each build, any modifications you make will not be retained. Therefore, you should copy any customized files from target/gluonfx/arm64-ios/gensrc/ios/ (your icon files and your Default-Info.plist file) to src/ios/. (Note: we have already customized Default-Info.plist and the icon set and moved these files to src/ios/.) 

In TiltMaze, we modified Default-Info.plist to permit portrait mode only, use the accelerometer, and not use Bluetooth.

<dict>
          . . .
        <key>CFBundleName</key>
        <string>TiltMaze</string>
         . . .
        <key>UISupportedInterfaceOrientations</key>
        <array>
            <string>UIInterfaceOrientationPortrait</string>
        </array>
        <key>UISupportedInterfaceOrientations~ipad</key>
        <array>
            <string>UIInterfaceOrientationPortrait</string>
        </array>
        <key>UIRequiredDeviceCapabilities</key>
        <array>
            <string>arm64</string>
            <string>accelerometer</string>
        </array>
          . . .
        <key>NSBluetoothAlwaysUsageDescription</key>
        <string>This app does not use Bluetooth</string>        
        <key>NSMotionUsageDescription</key>
        <string>This app uses accelerometer services</string>
</dict>

We created our own application icon, which you supply in various sizes for the App Store and the device icons. The entire icon set includes 18 different PNG images.

Here are several resources to generate the icons for the various devices. 

  • App Icon generator:  https://appicon.co/ -- generates a set of icons from a single 1024 x 1024 PNG file.
  • Maven Image Builder: You add a scale goal and specify your desired sizes, an input image and an output image name for each size. See the readme file here for more information: https://github.com/zayass/image-maven-plugin

Here is the TiltMaze icon. Be sure to leave generous margins around the icon, since Apple will round the corners, possibly cutting into your design.

TiltMaze icon

Android

For Android applications, your development environment is Linux. If you have a Linux box, great! You’re ready to install GraalVM, Maven, and optionally your favorite IDE, and start building Android applications. Faced with the prospect of buying extra hardware, I decided to use Oracle’s Virtual Box and install Ubuntu Linux on my Mac. This is a very workable solution, but there are a few cautions:

  • The “normal” install allocates 16GB for the Ubuntu virtual image, which is too small. After installation, I used the gparted utility to increase the size up to 50GB. It's much easier if you configure a larger allocation during setup.
  • Normal memory allocation is 4GB; again, too small. I increased memory to more than 10GB.
  • Close as many running programs as possible on your Mac before running native builds for Android. This reduces the elapsed time needed to complete the task.
  • Configure file sharing so that you can work with the same physical files with both Linux and Mac OSX.

To target an application for the Android platform, you need the Android SDK. Fortunately, the GluonFX plugin automatically downloads and configures the required Android SDK packages for you! (Alternatively, with GitHub Actions you can build your android application in a cloud-hosted Linux system.)

Here’s a summary of the steps we followed to create the Android native image after configuring Ubuntu Linux with the larger disk image, more memory, and file sharing.

  • Download and install the latest Gluon community edition for Linux, https://github.com/gluonhq/graal/releases/latest. Currently, this is graalvm-svm-linux-gluon-21.1.0-dev.zip. Set the GRAALVM_HOME environment variable to the GraalVM install directory on your Linux system.
  • Make sure you have gcc version 6 or higher.
  • Make sure you have ld version 2.26 or higher.
  • You will use profile target android in your Maven pom.xml file.

Build the project for Android with 

$ mvn -Pandroid gluonfx:build

This runs the compilation phase and links the compiled objects into an Android executable.

  • Generate an Android application package (an APK):
$ mvn -Pandroid gluonfx:package
  • Install the application on a connected Android device. Note that "USB debugging" must be enabled on the connected device. To enable USB debugging follow the steps listed here. Install with the following action.
$ mvn -Pandroid gluonfx:install
  • And finally, launch the application on the connected device with
$ mvn -Pandroid gluonfx:nativerun

The same as with the iOS target, you can configure <verbose>true</verbose> mode for help in identifying configuration errors.

Android Configuration

Similar to the iOS targets, the Gluon Plugin generates default settings and application resources for the Android target in subdirectory target/gluonfx/aarch64-android/gensrc/android/res. Copy the configuration AndroidManifest.xml and icon PNG files to src/android/res before customizing these files. 

In our case, we specify the application runs only in portrait mode and requires the accelerometer:

<uses-feature android:name="android.hardware.sensor.accelerometer" android:required="true" />

We provide Android-specific icon resource files for TiltMaze under src/android/res/.

Next

In Part 3, we'll show you how to upload a mobile application to the respective mobile app stores.

Related Articles

View All
  • How to Create Mobile Apps with JavaFX (Part 1)

    In this three-part series, I’ll show how to use JavaFX for mobile app development: JavaFX looks great and runs on both mobile platforms.

    You use the same JavaFX code targeting Google Play and Apple App stores. Performance is excellent and startup time is fast with native images.

    You use Java 11+ and the latest JavaFX.

    Our game is TiltMaze Labyrinth!

    Read More
    June 11, 2021
  • How to Create Mobile Apps with JavaFX (Part 3)

    In Part 1, we introduced a mobile app game, TiltMaze, written completely in JavaFX, which you can download from either the Apple App Store or Google Play and install it on your mobile device or tablet.

    In Part 2, we showed you how to work with Gluon and GraalVM to build native images that execute on either Apple or Android mobile devices and tablets.

    In this article, we’ll discuss how to upload your application to the respective mobile app stores so the world can install your application on their devices.

    Read More
    June 25, 2021
  • Virtual Foojay OpenJDK 17+ JUG Tour

    To celebrate OpenJDK 17 and Foojay.io as a community platform for its users, we’re kicking off the Virtual Foojay OpenJDK 17+ JUG Tour. Ari Waller, JFrog’s Event Manager, well known to many JUGs, will continue to wear a second hat—that of Foojay Event Manager.

    During September and October, contributors to Foojay will be making a whistle stop tour through as many JUGs as possible, via their virtual meetups! (And if you’re not holding virtual events or don’t have the facilities for this, we can support by making these available as needed.)

    Read More
    Jadon Ortlepp profile
    July 21, 2021

Author(s)

  • Gail Anderson

    Gail is a Java Champion and Oracle Groundbreaker Ambassador. She is Director of Research and founding member of the Anderson Software Group, a leading provider of training courses in Java, ... Learn more

Comments (8)

Your email address will not be published. Required fields are marked *

Highlight your code snippets using [code lang="language name"] shortcode. Just insert your code between opening and closing tag: [code lang="java"] code [/code]. Or specify another language.

Save my name, email, and website in this browser for the next time I comment.

Javier Faus Llopis

Just to let you know that you can add the link to the Part 3 as it has already been published. Thanks a lot for sharing.

Buddu Edgar

Dear Paul & Gail,

I am using the gluonfx gradle build task with graalvm native-image … how do I enable android apk to be generated with MultiDexEnabled=True ??..
When I run the apk to start some services, the JVM complains that: Didn’t find class on the DexPathList … The solution provided by google is to enable multiDex …

Edgar

Anonymous

Hi, I was able to build and package my application into an apk. However, the apk only runs on a select few android devices. It doesn’t run on my 32 bit cpu Samsung for instance. What can I do to fix this?

Gail

As per the Gluon documentation: “Native image is only supported on 64-bit platforms.”

Siegfried

Lately as of your inspiring article I have been playing around with the example and some small proof-of-concept project for android. I am a newbie to android development but with the approach described by your article I got a simple demo up and running on my phone 🙂

Now I have two questions regarding the screen orientation and the navigation bar (the bottom bar) on the screen of the phone:

1) Manipulating the AndroidManifest.xml I was able to get a landscape orientation changing the com.gluonhq.helloandroid.MainActivity activity though in the code I did not find any com.gluonhq.helloandroid.MainActivity class. Is the name irrelevant or is there some such default activity?

2) Do you know how I can hide the navigation bar (the bottom bar)?

Thanks beforehand! 🙂

Gail Anderson

Hi Siegfried,
Thanks for the comment and questions. Your questions sent me checking with those more involved in the Android-specific Gluon Substrate details than I am. Here is a response from @JPeredaDnr, engineer extraordinaire at Gluon:

Android runs its own 1.7 JVM, and we [Gluon substrate] add ours (via GraalVM, 17), and both need to communicate.
If you check your project, under target/gluonfx/aarch64-android/gvm/android_project, there is a full Android project (you can open it with Android Studio). This is created by Substrate.
It has the main activity set as com.gluonhq.helloandroid.MainActivity, which is just the bootstrap activity to launch the “real” app, that runs under libsubstrate.so, by starting the graal thread: https://github.com/gluonhq/substrate/blob/master/src/main/resources/native/android/android_project/app/src/main/java/com/gluonhq/helloandroid/MainActivity.java#L130
In any case, from the Android point of view, this is the entry point, and therefore it has to be present in the AndroidManifest.

In theory you could rename this main activity to your liking, but you will most likely get tons of issues…

For the second question on running an android app in full immersive mode, you can’t specify immersive mode in the AndroidManifest file. So you have to use Attach [the Gluon way to access system or device-specific features]. Attach doesn’t have that service yet, but it should be fairly easy to do. You need to modify some of the Intents with those flags.

You can create a service with AttachExtended, and give it a try, or if you need to modify the MainActivity you can manually build the apk:

mvn -Pandroid gluonfx:package
cd target/gluonfx/aarch64-android/gvm/android_project/
export ANDROID_SDK_ROOT=~/.gluon/substrate/Android
./gradlew app:assembleDebug

and then resume

mvn -Pandroid gluonfx:install…

Siegfried

Hello @Gail, @JPeredaDnr, thank you very much for the support and your detailed information! Now I understand more and more about JavaFX development for Android and this information will help me very much! And thanks for adapting JavaFX to Android, great work!

Turn A Webpage Into A Desktop App With Gluon – Hackaday – Web Generation

[…] as Android & iOS apps, which is confusingly close to the same problem space as this tool.e.g. https://foojay.io/today/creating-mobile-apps-with-javafx-part-2/How does it compare to Progressive Web Apps (PWAs)?Please be kind and respectful to help make the […]

Subscribe to foojay updates:

https://foojay.io/feed/
Copied to the clipboard