Drive: Add BatchableRequest subclass.
[chromium-blink-merge.git] / chromecast / browser / android / apk / AndroidManifest.xml.jinja2
blob7b02275ffcf035175f6199d467973db47d4d5016
1 <?xml version="1.0" encoding="utf-8"?>
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
5 found in the LICENSE file.
6 -->
8 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
9 package="org.chromium.chromecast.shell">
11 <application android:name="org.chromium.chromecast.shell.CastApplication"
12 android:icon="@mipmap/app_icon"
13 android:label="@string/app_name">
14 <activity android:name="org.chromium.chromecast.shell.CastShellActivity"
15 android:theme="@style/CastShellTheme"
16 android:exported="true"
17 android:hardwareAccelerated="true"
18 android:taskAffinity=".CastShellActivity"
19 android:configChanges="orientation|keyboardHidden|keyboard|screenSize"
20 android:excludeFromRecents="true"
21 android:noHistory="true">
22 <intent-filter>
23 <action android:name="android.intent.action.MAIN"/>
24 <category android:name="android.intent.category.LAUNCHER"/>
25 </intent-filter>
26 </activity>
28 <!-- The following service entries exist in order to allow us to
29 start more than one sandboxed process. -->
30 {% set num_sandboxed_services = 20 %}
31 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERVICES"
32 android:value="{{ num_sandboxed_services }}"/>
33 {% for i in range(num_sandboxed_services) %}
34 <service android:name="org.chromium.content.app.SandboxedProcessService{{ i }}"
35 android:process=":sandboxed_process{{ i }}"
36 android:isolatedProcess="true"
37 android:exported="false" />
38 {% endfor %}
40 {% set num_privileged_services = 3 %}
41 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SERVICES"
42 android:value="{{ num_privileged_services }}"/>
43 {% for i in range(num_privileged_services) %}
44 <service android:name="org.chromium.content.app.PrivilegedProcessService{{ i }}"
45 android:process=":privileged_process{{ i }}"
46 android:isolatedProcess="false"
47 android:exported="false" />
48 {% endfor %}
49 </application>
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"/>
57 </manifest>