Remove static library loading from WebRTC Android SDK.
Bug: webrtc:7474 Change-Id: Ie75a5c12638be82d7bd91073744946ac21c48155 Reviewed-on: https://webrtc-review.googlesource.com/22962 Reviewed-by: Magnus Jedvert <magjed@webrtc.org> Commit-Queue: Sami Kalliomäki <sakal@webrtc.org> Cr-Commit-Position: refs/heads/master@{#20865}
This commit is contained in:
committed by
Commit Bot
parent
ff610bd2b2
commit
3e189a6dc3
@ -69,18 +69,6 @@ public class CallActivity extends Activity implements AppRTCClient.SignalingEven
|
||||
CallFragment.OnCallEvents {
|
||||
private static final String TAG = "CallRTCClient";
|
||||
|
||||
// Fix for devices running old Android versions not finding the libraries.
|
||||
// https://bugs.chromium.org/p/webrtc/issues/detail?id=6751
|
||||
static {
|
||||
try {
|
||||
System.loadLibrary("c++_shared");
|
||||
System.loadLibrary("boringssl.cr");
|
||||
System.loadLibrary("protobuf_lite.cr");
|
||||
} catch (UnsatisfiedLinkError e) {
|
||||
Logging.w(TAG, "Failed to load native dependencies: ", e);
|
||||
}
|
||||
}
|
||||
|
||||
public static final String EXTRA_ROOMID = "org.appspot.apprtc.ROOMID";
|
||||
public static final String EXTRA_URLPARAMETERS = "org.appspot.apprtc.URLPARAMETERS";
|
||||
public static final String EXTRA_LOOPBACK = "org.appspot.apprtc.LOOPBACK";
|
||||
|
||||
Reference in New Issue
Block a user