Catch unsatisfied link error on start if webrtc so isn't found
// FREEBIE
This commit is contained in:
parent
5be246ec8f
commit
e452862813
1 changed files with 22 additions and 18 deletions
|
@ -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…
Add table
Reference in a new issue