Catch unsatisfied link error on start if webrtc so isn't found

// FREEBIE
pull/1/head
Moxie Marlinspike 8 years ago
parent 5be246ec8f
commit e452862813

@ -159,6 +159,7 @@ public class ApplicationContext extends MultiDexApplication implements Dependenc
}
private void initializeWebRtc() {
try {
Set<String> HARDWARE_AEC_BLACKLIST = new HashSet<String>() {{
add("Pixel");
add("Pixel XL");
@ -181,6 +182,9 @@ public class ApplicationContext extends MultiDexApplication implements Dependenc
PeerConnectionFactory.initializeAndroidGlobals(this, true, true, true);
}
} catch (UnsatisfiedLinkError e) {
Log.w(TAG, e);
}
}
private void initializeCircumvention() {

Loading…
Cancel
Save