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

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

Issue 1190103002: Make lint fail builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: set android_webview to use minsdk 19 Created 5 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
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="21"/> 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="@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 <meta-data 14 <meta-data
15 android:name="com.google.android.gms.version" 15 android:name="com.google.android.gms.version"
16 android:value="@integer/google_play_services_version"/> 16 android:value="@integer/google_play_services_version"/>
17 <activity android:name="org.chromium.chromoting.Chromoting" 17 <activity android:name="org.chromium.chromoting.Chromoting"
18 android:configChanges="orientation|screenSize" 18 android:configChanges="orientation|screenSize"
19 android:theme="@style/BaseTheme.NavigationDrawer" 19 android:theme="@style/BaseTheme.NavigationDrawer"
20 android:launchMode="singleTask"> 20 android:launchMode="singleTask">
21 <intent-filter> 21 <intent-filter>
22 <action android:name="android.intent.action.MAIN"/> 22 <action android:name="android.intent.action.MAIN"/>
23 <category android:name="android.intent.category.LAUNCHER"/> 23 <category android:name="android.intent.category.LAUNCHER"/>
24 </intent-filter> 24 </intent-filter>
25 </activity> 25 </activity>
26 <activity 26 <activity
27 android:name="org.chromium.chromoting.ThirdPartyTokenFetcher$OAuthRe directActivity" 27 android:name="org.chromium.chromoting.ThirdPartyTokenFetcher$OAuthRe directActivity"
28 android:enabled="false" 28 android:enabled="false"
29 android:noHistory="true"> 29 android:noHistory="true">
30 <!--suppress AppIndexingError -->
newt (away) 2015/06/18 20:26:59 mention bug
Lambros 2015/06/18 20:44:32 FYI, the bug is https://code.google.com/p/chromium
aurimas (slooooooooow) 2015/06/18 21:37:54 Done
30 <intent-filter> 31 <intent-filter>
31 <action android:name="android.intent.action.VIEW"/> 32 <action android:name="android.intent.action.VIEW"/>
32 <category android:name="android.intent.category.DEFAULT"/> 33 <category android:name="android.intent.category.DEFAULT"/>
33 <category android:name="android.intent.category.BROWSABLE"/> 34 <category android:name="android.intent.category.BROWSABLE"/>
34 <data android:scheme="{{ APK_PACKAGE_NAME }}"/> 35 <data android:scheme="{{ APK_PACKAGE_NAME }}"/>
35 <data android:path="/oauthredirect/"/> 36 <data android:path="/oauthredirect/"/>
36 </intent-filter> 37 </intent-filter>
37 </activity> 38 </activity>
38 <activity android:name="org.chromium.chromoting.Desktop" 39 <activity android:name="org.chromium.chromoting.Desktop"
39 android:configChanges="orientation|screenSize|keyboard|keyboardH idden" 40 android:configChanges="orientation|screenSize|keyboard|keyboardH idden"
40 android:theme="@style/BaseTheme.Desktop" 41 android:theme="@style/BaseTheme.Desktop"
41 android:windowSoftInputMode="adjustResize"/> 42 android:windowSoftInputMode="adjustResize"/>
42 <activity android:name="org.chromium.chromoting.HelpActivity" 43 <activity android:name="org.chromium.chromoting.HelpActivity"
43 android:configChanges="orientation|screenSize" 44 android:configChanges="orientation|screenSize"
44 android:uiOptions="splitActionBarWhenNarrow"/> 45 android:uiOptions="splitActionBarWhenNarrow"/>
45 </application> 46 </application>
46 </manifest> 47 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698