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

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 . to comments 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 6
7 <uses-feature android:name="android.hardware.camera" /> 7 <uses-feature android:name="android.hardware.camera" />
8 <uses-feature android:name="android.hardware.camera.autofocus" /> 8 <uses-feature android:name="android.hardware.camera.autofocus" />
9 <uses-feature android:glEsVersion="0x00020000" android:required="true" /> 9 <uses-feature android:glEsVersion="0x00020000" android:required="true" />
10 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="21" /> 10 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="21" />
(...skipping 29 matching lines...) Expand all
40 40
41 <activity android:name="SettingsActivity" 41 <activity android:name="SettingsActivity"
42 android:label="@string/settings_name"> 42 android:label="@string/settings_name">
43 </activity> 43 </activity>
44 44
45 <activity android:name="CallActivity" 45 <activity android:name="CallActivity"
46 android:label="@string/app_name" 46 android:label="@string/app_name"
47 android:screenOrientation="fullUser" 47 android:screenOrientation="fullUser"
48 android:configChanges="orientation|screenSize" 48 android:configChanges="orientation|screenSize"
49 android:theme="@style/CallActivityTheme"> 49 android:theme="@style/CallActivityTheme">
50 <intent-filter>
sakal 2016/09/27 07:54:28 There is already an intent in the ConnectActivity.
51 <action android:name="android.intent.action.VIEW" />
52 <category android:name="android.intent.category.LAUNCHER" />
53 </intent-filter>
50 </activity> 54 </activity>
51 </application> 55 </application>
52 </manifest> 56 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698