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

Side by Side Diff: remoting/android/java/AndroidManifest.xml.jinja2

Issue 2427673003: [Remoting Android] Add minimum OpenGL ES version requirement (Closed)
Patch Set: Created 4 years, 2 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="{{ APK_PACKAGE_NAME }}"> 3 package="{{ APK_PACKAGE_NAME }}">
4 <uses-sdk android:minSdkVersion="14" 4 <uses-sdk android:minSdkVersion="14"
5 android:targetSdkVersion="23"/> 5 android:targetSdkVersion="23"/>
6 <uses-permission android:name="android.permission.GET_ACCOUNTS"/> 6 <uses-permission android:name="android.permission.GET_ACCOUNTS"/>
7 <uses-permission android:name="android.permission.INTERNET"/> 7 <uses-permission android:name="android.permission.INTERNET"/>
8 <uses-feature android:glEsVersion="0x00020000" android:required="true" />
8 9
9 <application android:label="@string/product_name_android" 10 <application android:label="@string/product_name_android"
10 android:name="org.chromium.chromoting.RemotingApplication" 11 android:name="org.chromium.chromoting.RemotingApplication"
11 android:icon="@mipmap/logo_remote_desktop_launcher" 12 android:icon="@mipmap/logo_remote_desktop_launcher"
12 android:theme="@style/BaseTheme" 13 android:theme="@style/BaseTheme"
13 android:allowBackup="false"> 14 android:allowBackup="false">
14 <meta-data 15 <meta-data
15 android:name="com.google.android.gms.version" 16 android:name="com.google.android.gms.version"
16 android:value="@integer/google_play_services_version"/> 17 android:value="@integer/google_play_services_version"/>
17 <activity 18 <activity
(...skipping 29 matching lines...) Expand all
47 <activity 48 <activity
48 android:name="org.chromium.chromoting.help.HelpActivity" 49 android:name="org.chromium.chromoting.help.HelpActivity"
49 android:configChanges="orientation|screenSize" 50 android:configChanges="orientation|screenSize"
50 android:exported="false" 51 android:exported="false"
51 android:uiOptions="splitActionBarWhenNarrow"/> 52 android:uiOptions="splitActionBarWhenNarrow"/>
52 <activity 53 <activity
53 android:name="org.chromium.chromoting.help.CreditsActivity" 54 android:name="org.chromium.chromoting.help.CreditsActivity"
54 android:exported="true"/> 55 android:exported="true"/>
55 </application> 56 </application>
56 </manifest> 57 </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