Index: webrtc/examples/androidapp/AndroidManifest.xml |
diff --git a/webrtc/examples/androidapp/AndroidManifest.xml b/webrtc/examples/androidapp/AndroidManifest.xml |
index 608e381fcbe929dfbc93fa1481ad3536d00e78b7..98795e42e98601308d865aa6654028c50852d1a3 100644 |
--- a/webrtc/examples/androidapp/AndroidManifest.xml |
+++ b/webrtc/examples/androidapp/AndroidManifest.xml |
@@ -2,7 +2,8 @@ |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
package="org.appspot.apprtc" |
android:versionCode="1" |
- android:versionName="1.0"> |
+ android:versionName="1.0" |
+ android:debuggable="true"> |
magjed_webrtc
2016/08/31 13:08:03
What will this do?
mandermo
2016/09/16 12:32:30
Removed, seams only the <intent-filter> was needed
|
<uses-feature android:name="android.hardware.camera" /> |
<uses-feature android:name="android.hardware.camera.autofocus" /> |
@@ -47,6 +48,10 @@ |
android:screenOrientation="fullUser" |
android:configChanges="orientation|screenSize" |
android:theme="@style/CallActivityTheme"> |
+ <intent-filter> |
magjed_webrtc
2016/08/31 13:08:03
Is this needed for starting CallActivity from adb
|
+ <action android:name="android.intent.action.VIEW" /> |
+ <category android:name="android.intent.category.LAUNCHER" /> |
+ </intent-filter> |
</activity> |
</application> |
</manifest> |