f573ab2d56
Catch JavaError when trying to load the java classes of the biometry module on startup. This can raise if the device is on an old API version and the loaded java class depends on apis unknown to the os. Fixes #10470 ``` 02-17 10:07:25.714 5254 5270 I python : 0.47 | E | __main__ | daemon.run_gui errored 02-17 10:07:25.714 5254 5270 I python : Traceback (most recent call last): 02-17 10:07:25.714 5254 5270 I python : File "app/main.py", line 514, in handle_cmd 02-17 10:07:25.714 5254 5270 I python : File "app/electrum/daemon.py", line 653, in run_gui 02-17 10:07:25.714 5254 5270 I python : File "app/electrum/gui/qml/__init__.py", line 38, in <module> 02-17 10:07:25.714 5254 5270 I python : File "app/electrum/gui/qml/qeapp.py", line 49, in <module> 02-17 10:07:25.714 5254 5270 I python : File "app/electrum/gui/qml/qebiometrics.py", line 33, in <module> 02-17 10:07:25.714 5254 5270 I python : File "jnius/reflect.py", line 243, in autoclass 02-17 10:07:25.714 5254 5270 I python : File "jnius/jnius_export_class.pxi", line 877, in jnius.jnius.JavaMethod.__call__ 02-17 10:07:25.714 5254 5270 I python : File "jnius/jnius_export_class.pxi", line 964, in jnius.jnius.JavaMethod.call_method 02-17 10:07:25.714 5254 5270 I python : File "jnius/jnius_utils.pxi", line 79, in jnius.jnius.check_exception 02-17 10:07:25.714 5254 5270 I python : jnius.jnius.JavaException: JVM exception occurred: Failed resolution of: Landroid/hardware/biometrics/BiometricPrompt$AuthenticationResult; java.lang.NoClassDefFoundError ```