GlassHelper.m for iOS contains the public method ApplicationNotifyQuitMethod(), that tries to find via reflection the notifyQuit method in com.sun.glass.ui.Application.
But this method notifyQuit doesn't exist in that class.
When it is called, the method is not found, and the logger prints an error message. However, running with GraalVM's native-image there is also an exception, as the method is not found:
java.lang.NoSuchMethodError: com.sun.glass.ui.Application.notifyQuit()V
It is possible that the intended method was in fact notifyWillQuit.
Note that, for instance, Mac has ApplicationNotifyWillQuitMethod.
But this method notifyQuit doesn't exist in that class.
When it is called, the method is not found, and the logger prints an error message. However, running with GraalVM's native-image there is also an exception, as the method is not found:
java.lang.NoSuchMethodError: com.sun.glass.ui.Application.notifyQuit()V
It is possible that the intended method was in fact notifyWillQuit.
Note that, for instance, Mac has ApplicationNotifyWillQuitMethod.