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

Side by Side Diff: webrtc/examples/androidapp/AndroidManifest.xml

Issue 1235563006: Move talk/examples/* to webrtc/examples. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: 201507141427 Created 5 years, 5 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="14" android:targetSdkVersion="21" /> 10 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" />
(...skipping 29 matching lines...) Expand all
40 </activity> 40 </activity>
41 41
42 <activity android:name="CallActivity" 42 <activity android:name="CallActivity"
43 android:label="@string/app_name" 43 android:label="@string/app_name"
44 android:screenOrientation="fullUser" 44 android:screenOrientation="fullUser"
45 android:configChanges="orientation|screenSize" 45 android:configChanges="orientation|screenSize"
46 android:theme="@style/CallActivityTheme"> 46 android:theme="@style/CallActivityTheme">
47 </activity> 47 </activity>
48 </application> 48 </application>
49 </manifest> 49 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698