| Index: webrtc/examples/androidapp/src/org/appspot/apprtc/CallActivity.java
|
| diff --git a/webrtc/examples/androidapp/src/org/appspot/apprtc/CallActivity.java b/webrtc/examples/androidapp/src/org/appspot/apprtc/CallActivity.java
|
| index b9abf11eb387f25d09021bd31c980c2f1b2aafc6..e2f130663bf77425414eb9fb5a3734fe991ebd92 100644
|
| --- a/webrtc/examples/androidapp/src/org/appspot/apprtc/CallActivity.java
|
| +++ b/webrtc/examples/androidapp/src/org/appspot/apprtc/CallActivity.java
|
| @@ -32,6 +32,7 @@ import android.widget.Toast;
|
|
|
| import org.webrtc.EglBase;
|
| import org.webrtc.IceCandidate;
|
| +import org.webrtc.PeerConnectionFactory;
|
| import org.webrtc.SessionDescription;
|
| import org.webrtc.StatsReport;
|
| import org.webrtc.RendererCommon.ScalingType;
|
| @@ -262,6 +263,11 @@ public class CallActivity extends Activity
|
| }
|
|
|
| peerConnectionClient = PeerConnectionClient.getInstance();
|
| + if (loopback) {
|
| + PeerConnectionFactory.Options options = new PeerConnectionFactory.Options();
|
| + options.networkIgnoreMask = 0;
|
| + peerConnectionClient.setPeerConnectionFactoryOptions(options);
|
| + }
|
| peerConnectionClient.createPeerConnectionFactory(
|
| CallActivity.this, peerConnectionParameters, CallActivity.this);
|
| }
|
|
|