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

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

Issue 2936673003: Updating CRD app manifest to target API level 26 (Closed)
Patch Set: Created 3 years, 6 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="24"/> 5 android:targetSdkVersion="26"/>
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 <uses-feature android:glEsVersion="0x00020000" android:required="true" />
9 9
10 <application android:label="@string/product_name_android" 10 <application android:label="@string/product_name_android"
11 android:name="org.chromium.chromoting.RemotingApplication" 11 android:name="org.chromium.chromoting.RemotingApplication"
12 android:icon="@mipmap/logo_remote_desktop_launcher" 12 android:icon="@mipmap/logo_remote_desktop_launcher"
13 android:theme="@style/BaseTheme" 13 android:theme="@style/BaseTheme"
14 android:allowBackup="false" 14 android:allowBackup="false"
15 android:resizeableActivity="true" 15 android:resizeableActivity="true"
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 <activity 50 <activity
51 android:name="org.chromium.chromoting.help.HelpActivity" 51 android:name="org.chromium.chromoting.help.HelpActivity"
52 android:configChanges="orientation|screenSize" 52 android:configChanges="orientation|screenSize"
53 android:exported="false" 53 android:exported="false"
54 android:uiOptions="splitActionBarWhenNarrow"/> 54 android:uiOptions="splitActionBarWhenNarrow"/>
55 <activity 55 <activity
56 android:name="org.chromium.chromoting.help.CreditsActivity" 56 android:name="org.chromium.chromoting.help.CreditsActivity"
57 android:exported="true"/> 57 android:exported="true"/>
58 </application> 58 </application>
59 </manifest> 59 </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