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

Unified 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, 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/android/java/AndroidManifest.xml.jinja2
diff --git a/remoting/android/java/AndroidManifest.xml.jinja2 b/remoting/android/java/AndroidManifest.xml.jinja2
index b1fabcc01113f82672053966fccab5eb91143bac..e345b1b43b815512b626a10f2020e14425aa7822 100644
--- a/remoting/android/java/AndroidManifest.xml.jinja2
+++ b/remoting/android/java/AndroidManifest.xml.jinja2
@@ -2,7 +2,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="{{ APK_PACKAGE_NAME }}">
<uses-sdk android:minSdkVersion="14"
- android:targetSdkVersion="23"/>
+ android:targetSdkVersion="24"/>
<uses-permission android:name="android.permission.GET_ACCOUNTS"/>
<uses-permission android:name="android.permission.INTERNET"/>
@@ -10,7 +10,9 @@
android:name="org.chromium.chromoting.RemotingApplication"
android:icon="@mipmap/logo_remote_desktop_launcher"
android:theme="@style/BaseTheme"
- android:allowBackup="false">
+ android:allowBackup="false"
+ android:resizeableActivity="true"
+ android:supportsPictureInPicture="false">
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version"/>
« 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