Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(759)

Unified Diff: webrtc/examples/androidapp/AndroidManifest.xml

Issue 2273573003: Support for video file instead of camera and output video out to file (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Added file to start automated loopback run Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698