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

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

Issue 2421683004: Updating manifest for Android N (Closed)
Patch Set: Simplifying the CL by specifying the attributes at the application level instead of the activity le… Created 4 years, 1 month 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="24"/>
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 8
9 <application android:label="@string/product_name_android" 9 <application android:label="@string/product_name_android"
10 android:name="org.chromium.chromoting.RemotingApplication" 10 android:name="org.chromium.chromoting.RemotingApplication"
11 android:icon="@mipmap/logo_remote_desktop_launcher" 11 android:icon="@mipmap/logo_remote_desktop_launcher"
12 android:theme="@style/BaseTheme" 12 android:theme="@style/BaseTheme"
13 android:allowBackup="false"> 13 android:allowBackup="false"
14 android:resizeableActivity="true"
15 android:supportsPictureInPicture="false">
14 <meta-data 16 <meta-data
15 android:name="com.google.android.gms.version" 17 android:name="com.google.android.gms.version"
16 android:value="@integer/google_play_services_version"/> 18 android:value="@integer/google_play_services_version"/>
17 <activity 19 <activity
18 android:name="org.chromium.chromoting.Chromoting" 20 android:name="org.chromium.chromoting.Chromoting"
19 android:configChanges="orientation|screenSize" 21 android:configChanges="orientation|screenSize"
20 android:exported="true" 22 android:exported="true"
21 android:theme="@style/BaseTheme.NavigationDrawer" 23 android:theme="@style/BaseTheme.NavigationDrawer"
22 android:launchMode="singleTask"> 24 android:launchMode="singleTask">
23 <intent-filter> 25 <intent-filter>
(...skipping 23 matching lines...) Expand all
47 <activity 49 <activity
48 android:name="org.chromium.chromoting.help.HelpActivity" 50 android:name="org.chromium.chromoting.help.HelpActivity"
49 android:configChanges="orientation|screenSize" 51 android:configChanges="orientation|screenSize"
50 android:exported="false" 52 android:exported="false"
51 android:uiOptions="splitActionBarWhenNarrow"/> 53 android:uiOptions="splitActionBarWhenNarrow"/>
52 <activity 54 <activity
53 android:name="org.chromium.chromoting.help.CreditsActivity" 55 android:name="org.chromium.chromoting.help.CreditsActivity"
54 android:exported="true"/> 56 android:exported="true"/>
55 </application> 57 </application>
56 </manifest> 58 </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