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

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

Issue 2645853002: Allow more config changes for CallActivity. (Closed)
Patch Set: Created 3 years, 11 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 </intent-filter> 40 </intent-filter>
41 </activity> 41 </activity>
42 42
43 <activity android:name="SettingsActivity" 43 <activity android:name="SettingsActivity"
44 android:label="@string/settings_name"> 44 android:label="@string/settings_name">
45 </activity> 45 </activity>
46 46
47 <activity android:name="CallActivity" 47 <activity android:name="CallActivity"
48 android:label="@string/app_name" 48 android:label="@string/app_name"
49 android:screenOrientation="fullUser" 49 android:screenOrientation="fullUser"
50 android:configChanges="orientation|screenSize" 50 android:configChanges="orientation|smallestScreenSize|screenSi ze|screenLayout"
51 android:theme="@style/CallActivityTheme"> 51 android:theme="@style/CallActivityTheme">
52 </activity> 52 </activity>
53 </application> 53 </application>
54 </manifest> 54 </manifest>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698