Skip to content
Advertisement

Application not compatible with older Android versions

I’m generating an Android application via mvn -Pandroid gluonfx:build gluonfx:package. Here are the versions from the POM:

JavaScript

Using graalvm-svm-java17-linux-gluon-22.1.0.1-Final

The application works well on Android 8. However, when trying to install it on Android 7.0, a message pops up saying that the application is not compatible with the device. I’m not sure where the default version is specified, but following the instructions, I copied the manifest file, which was

JavaScript

and added a line for supporting sdk 24 (matches Android 7.0):

JavaScript

Then I put it in my project under src/android/AndroidManifest.xml and ran mvn -Pandroid gluonfx:build gluonfx:package again. The APK was generated successfully, but upon installation the same error message appeared.

How do I install the app on Android 7.0?

Advertisement

Answer

As mentioned in the comments, the device uses an ARMv7 processor, which uses a 32bit architecture. GraalVM supports only 64 bits, so the APKs produced by it will work only on devices with 64bits, like those with ARMv8.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement