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.
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">
23 <action android:
name=
"android.intent.action.MAIN"/>
24 <category android:
name=
"android.intent.category.LAUNCHER"/>
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" />
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" />
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"/>