-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
154 lines (123 loc) · 7.27 KB
/
AndroidManifest.xml
File metadata and controls
154 lines (123 loc) · 7.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) 2012 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.chromium.content_shell_apk">
<application android:name="ContentShellApplication"
android:icon="@mipmap/app_icon"
android:label="Content Shell">
<activity android:name="ContentShellActivity"
android:launchMode="singleTask"
android:theme="@android:style/Theme.Holo.Light.NoActionBar"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize"
android:hardwareAccelerated="true">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<!-- The following service entries exist in order to allow us to
start more than one sandboxed process. -->
<!-- NOTE: If you change the values of "android:process" for any of the below services,
you also need to update kHelperProcessExecutableName in chrome_constants.cc. -->
<meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERVICES"
android:value="10"/>
<service android:name="org.chromium.content.app.SandboxedProcessService0"
android:process=":sandboxed_process0"
android:isolatedProcess="true"
android:exported="false" />
<service android:name="org.chromium.content.app.SandboxedProcessService1"
android:process=":sandboxed_process1"
android:isolatedProcess="true"
android:exported="false" />
<service android:name="org.chromium.content.app.SandboxedProcessService2"
android:process=":sandboxed_process2"
android:isolatedProcess="true"
android:exported="false" />
<service android:name="org.chromium.content.app.SandboxedProcessService3"
android:process=":sandboxed_process3"
android:isolatedProcess="true"
android:exported="false" />
<service android:name="org.chromium.content.app.SandboxedProcessService4"
android:process=":sandboxed_process4"
android:isolatedProcess="true"
android:exported="false" />
<service android:name="org.chromium.content.app.SandboxedProcessService5"
android:process=":sandboxed_process5"
android:isolatedProcess="true"
android:exported="false" />
<service android:name="org.chromium.content.app.SandboxedProcessService6"
android:process=":sandboxed_process6"
android:isolatedProcess="true"
android:exported="false" />
<service android:name="org.chromium.content.app.SandboxedProcessService7"
android:process=":sandboxed_process7"
android:isolatedProcess="true"
android:exported="false" />
<service android:name="org.chromium.content.app.SandboxedProcessService8"
android:process=":sandboxed_process8"
android:isolatedProcess="true"
android:exported="false" />
<service android:name="org.chromium.content.app.SandboxedProcessService9"
android:process=":sandboxed_process9"
android:isolatedProcess="true"
android:exported="false" />
<meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SERVICES"
android:value="10"/>
<service android:name="org.chromium.content.app.PrivilegedProcessService0"
android:process=":privileged_process0"
android:isolatedProcess="false"
android:exported="false" />
<service android:name="org.chromium.content.app.PrivilegedProcessService1"
android:process=":privileged_process1"
android:isolatedProcess="false"
android:exported="false" />
<service android:name="org.chromium.content.app.PrivilegedProcessService2"
android:process=":privileged_process2"
android:isolatedProcess="false"
android:exported="false" />
<service android:name="org.chromium.content.app.PrivilegedProcessService3"
android:process=":privileged_process3"
android:isolatedProcess="false"
android:exported="false" />
<service android:name="org.chromium.content.app.PrivilegedProcessService4"
android:process=":privileged_process4"
android:isolatedProcess="false"
android:exported="false" />
<service android:name="org.chromium.content.app.PrivilegedProcessService5"
android:process=":privileged_process5"
android:isolatedProcess="false"
android:exported="false" />
<service android:name="org.chromium.content.app.PrivilegedProcessService6"
android:process=":privileged_process6"
android:isolatedProcess="false"
android:exported="false" />
<service android:name="org.chromium.content.app.PrivilegedProcessService7"
android:process=":privileged_process7"
android:isolatedProcess="false"
android:exported="false" />
<service android:name="org.chromium.content.app.PrivilegedProcessService8"
android:process=":privileged_process8"
android:isolatedProcess="false"
android:exported="false" />
<service android:name="org.chromium.content.app.PrivilegedProcessService9"
android:process=":privileged_process9"
android:isolatedProcess="false"
android:exported="false" />
<meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDER"
android:value="org.chromium.content.browser.SmartClipProvider" />
</application>
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="android.permission.CAMERA"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
<uses-permission android:name="android.permission.RECORD_AUDIO"/>
<uses-permission android:name="android.permission.VIBRATE"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
</manifest>