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

Side by Side Diff: chromecast/browser/android/apk/AndroidManifest.xml.jinja2

Issue 1191373010: Chromecast: fix Android lint warnings, which are now build errors. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: remove suppressions 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 2
3 <!-- Copyright 2014 The Chromium Authors. All rights reserved. 3 <!-- Copyright 2014 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 7
8 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 8 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
9 package="org.chromium.chromecast.shell"> 9 package="org.chromium.chromecast.shell">
10 10
11 <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="22" />
12
13 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
14 <uses-permission android:name="android.permission.INTERNET"/>
15 <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
16 <uses-permission android:name="android.permission.WAKE_LOCK"/>
17
11 <application android:name="org.chromium.chromecast.shell.CastApplication" 18 <application android:name="org.chromium.chromecast.shell.CastApplication"
12 android:icon="@mipmap/app_icon" 19 android:icon="@mipmap/app_icon"
13 android:label="@string/app_name"> 20 android:label="@string/app_name">
14 <activity android:name="org.chromium.chromecast.shell.CastShellActivity" 21 <activity android:name="org.chromium.chromecast.shell.CastShellActivity"
15 android:theme="@style/CastShellTheme" 22 android:theme="@style/CastShellTheme"
16 android:exported="true" 23 android:exported="true"
17 android:hardwareAccelerated="true" 24 android:hardwareAccelerated="true"
18 android:taskAffinity=".CastShellActivity" 25 android:taskAffinity=".CastShellActivity"
19 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize" 26 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize"
20 android:excludeFromRecents="true" 27 android:excludeFromRecents="true"
(...skipping 20 matching lines...) Expand all
41 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER VICES" 48 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER VICES"
42 android:value="{{ num_privileged_services }}"/> 49 android:value="{{ num_privileged_services }}"/>
43 {% for i in range(num_privileged_services) %} 50 {% for i in range(num_privileged_services) %}
44 <service android:name="org.chromium.content.app.PrivilegedProcessService {{ i }}" 51 <service android:name="org.chromium.content.app.PrivilegedProcessService {{ i }}"
45 android:process=":privileged_process{{ i }}" 52 android:process=":privileged_process{{ i }}"
46 android:isolatedProcess="false" 53 android:isolatedProcess="false"
47 android:exported="false" /> 54 android:exported="false" />
48 {% endfor %} 55 {% endfor %}
49 </application> 56 </application>
50 57
51 <uses-sdk android:minSdkVersion="19" android:targetSdkVersion="19" />
52 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
53 <uses-permission android:name="android.permission.INTERNET"/>
54 <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
55 <uses-permission android:name="android.permission.WAKE_LOCK"/>
56
57 </manifest> 58 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698