FXMLLoader.java contains a few of these statements:
return m.getParameterCount() == 0
where m is an instance of java.lang.reflect.Method.
the getParameterCount() is new in Java 8 and hence doesn't work on Android/iOS.
The call can be replaced with
m.getParameterTypes().length
return m.getParameterCount() == 0
where m is an instance of java.lang.reflect.Method.
the getParameterCount() is new in Java 8 and hence doesn't work on Android/iOS.
The call can be replaced with
m.getParameterTypes().length