show app failure instead of crashing when egl fails to init. fixes #3795

This commit is contained in:
Daniel Gultsch 2020-06-18 20:37:56 +02:00
parent 169ee99afa
commit dddb7ece25
1 changed files with 8 additions and 4 deletions

View File

@ -214,9 +214,13 @@ public class WebRTCWrapper {
PeerConnectionFactory.InitializationOptions.builder(service).createInitializationOptions()
);
} catch (final UnsatisfiedLinkError e) {
throw new InitializationException(e);
throw new InitializationException("Unable to initialize PeerConnectionFactory", e);
}
try {
this.eglBase = EglBase.create();
} catch (final RuntimeException e) {
throw new InitializationException("Unable to create EGL base", e);
}
this.eglBase = EglBase.create();
this.context = service;
this.toneManager = service.getJingleConnectionManager().toneManager;
mainHandler.post(() -> {
@ -589,8 +593,8 @@ public class WebRTCWrapper {
static class InitializationException extends Exception {
private InitializationException(final Throwable throwable) {
super(throwable);
private InitializationException(final String message, final Throwable throwable) {
super(message, throwable);
}
private InitializationException(final String message) {