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

Side by Side 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, 3 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 unified diff | Download patch
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="org.appspot.apprtc" 3 package="org.appspot.apprtc"
4 android:versionCode="1" 4 android:versionCode="1"
5 android:versionName="1.0"> 5 android:versionName="1.0"
6 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
6 7
7 <uses-feature android:name="android.hardware.camera" /> 8 <uses-feature android:name="android.hardware.camera" />
8 <uses-feature android:name="android.hardware.camera.autofocus" /> 9 <uses-feature android:name="android.hardware.camera.autofocus" />
9 <uses-feature android:glEsVersion="0x00020000" android:required="true" /> 10 <uses-feature android:glEsVersion="0x00020000" android:required="true" />
10 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="21" /> 11 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="21" />
11 12
12 <uses-permission android:name="android.permission.CAMERA" /> 13 <uses-permission android:name="android.permission.CAMERA" />
13 <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" /> 14 <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
14 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" /> 15 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
15 <uses-permission android:name="android.permission.RECORD_AUDIO" /> 16 <uses-permission android:name="android.permission.RECORD_AUDIO" />
(...skipping 24 matching lines...) Expand all
40 41
41 <activity android:name="SettingsActivity" 42 <activity android:name="SettingsActivity"
42 android:label="@string/settings_name"> 43 android:label="@string/settings_name">
43 </activity> 44 </activity>
44 45
45 <activity android:name="CallActivity" 46 <activity android:name="CallActivity"
46 android:label="@string/app_name" 47 android:label="@string/app_name"
47 android:screenOrientation="fullUser" 48 android:screenOrientation="fullUser"
48 android:configChanges="orientation|screenSize" 49 android:configChanges="orientation|screenSize"
49 android:theme="@style/CallActivityTheme"> 50 android:theme="@style/CallActivityTheme">
51 <intent-filter>
magjed_webrtc 2016/08/31 13:08:03 Is this needed for starting CallActivity from adb
52 <action android:name="android.intent.action.VIEW" />
53 <category android:name="android.intent.category.LAUNCHER" />
54 </intent-filter>
50 </activity> 55 </activity>
51 </application> 56 </application>
52 </manifest> 57 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698