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

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

Issue 664163003: Update targetSdkVersion for Chromium applications. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
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="20"/> 5 android:targetSdkVersion="21"/>
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-permission android:name="android.permission.MANAGE_ACCOUNTS"/> 8 <uses-permission android:name="android.permission.MANAGE_ACCOUNTS"/>
9 <uses-permission android:name="android.permission.USE_CREDENTIALS"/> 9 <uses-permission android:name="android.permission.USE_CREDENTIALS"/>
10 <application android:label="@string/product_name_android" 10 <application android:label="@string/product_name_android"
11 android:icon="@drawable/chromoting128" 11 android:icon="@drawable/chromoting128"
12 android:theme="@android:style/Theme.Holo" 12 android:theme="@android:style/Theme.Holo"
13 android:allowBackup="false"> 13 android:allowBackup="false">
14 <activity android:name="org.chromium.chromoting.Chromoting" 14 <activity android:name="org.chromium.chromoting.Chromoting"
15 android:configChanges="orientation|screenSize" 15 android:configChanges="orientation|screenSize"
(...skipping 18 matching lines...) Expand all
34 </activity> 34 </activity>
35 <activity android:name="org.chromium.chromoting.Desktop" 35 <activity android:name="org.chromium.chromoting.Desktop"
36 android:configChanges="orientation|screenSize" 36 android:configChanges="orientation|screenSize"
37 android:windowSoftInputMode="adjustResize" 37 android:windowSoftInputMode="adjustResize"
38 android:theme="@style/Theme.AppCompat"/> 38 android:theme="@style/Theme.AppCompat"/>
39 <activity android:name="org.chromium.chromoting.HelpActivity" 39 <activity android:name="org.chromium.chromoting.HelpActivity"
40 android:configChanges="orientation|screenSize" 40 android:configChanges="orientation|screenSize"
41 android:uiOptions="splitActionBarWhenNarrow"/> 41 android:uiOptions="splitActionBarWhenNarrow"/>
42 </application> 42 </application>
43 </manifest> 43 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698