blob: 6b9e1b7b96a907dec42952a52f8e7957a431c915 [file] [log] [blame]
The Android Open Source Project0c908882009-03-03 19:32:16 -08001<!--
Leon Scrogginsb6b7f9e2009-06-18 12:05:28 -04002/*
3 * Copyright 2006, The Android Open Source Project
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
The Android Open Source Project0c908882009-03-03 19:32:16 -080017-->
18
Bijan Amirzada41242f22014-03-21 12:12:18 -070019<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.browser">
The Android Open Source Project0c908882009-03-03 19:32:16 -080020
Axesh R. Ajmera70a6ec72014-06-10 18:03:50 -070021 <permission android:name="com.android.swe.browser.permission.PRELOAD"
Michael Kolb14612442011-06-24 13:06:29 -070022 android:label="@string/permission_preload_label"
23 android:protectionLevel="signatureOrSystem" />
Axesh R. Ajmera70a6ec72014-06-10 18:03:50 -070024 <permission android:name="com.android.swe.browser.permission.INITIALIZE_DATABASE"
Bijan Amirzada41242f22014-03-21 12:12:18 -070025 android:protectionLevel="signatureOrSystem" />
26 <permission android:name="org.chromium.content_shell.permission.SANDBOX"
Bijan Amirzada9b1e9882014-02-26 17:15:46 -080027 android:protectionLevel="signatureOrSystem" />
Michael Kolb14612442011-06-24 13:06:29 -070028
The Android Open Source Project0c908882009-03-03 19:32:16 -080029 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
30 <uses-permission android:name="android.permission.ACCESS_DOWNLOAD_MANAGER"/>
31 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
32 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
33 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
The Android Open Source Project0c908882009-03-03 19:32:16 -080034 <uses-permission android:name="android.permission.INTERNET" />
Martijn Coenenb2f93552011-06-14 10:48:35 +020035 <uses-permission android:name="android.permission.NFC" />
Jeff Hamiltona9bad832010-09-24 11:05:30 -050036 <uses-permission android:name="android.permission.SEND_DOWNLOAD_COMPLETED_INTENTS" />
Ben Murdoch4f75ba22009-10-27 11:48:28 +000037 <uses-permission android:name="android.permission.SET_WALLPAPER" />
The Android Open Source Project0c908882009-03-03 19:32:16 -080038 <uses-permission android:name="android.permission.WAKE_LOCK"/>
Vivek Sekharce2a4832014-03-26 13:26:53 -070039 <uses-permission android:name="android.permission.WRITE_MEDIA_STORAGE" />
Grace Kloba4d7880f2009-08-12 09:35:42 -070040 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Bjorn Bringertd69f51d2010-09-13 14:06:41 +010041 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
John Reck267b6af2011-01-19 10:15:47 -080042 <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
Jeff Hamiltona9bad832010-09-24 11:05:30 -050043 <uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" />
Bijan Amirzadae5f90342014-04-15 17:17:06 -070044 <uses-permission android:name="android.permission.GET_ACCOUNTS"/>
Ben Murdoch3d6c7192011-10-27 18:04:58 +010045 <uses-permission android:name="android.permission.READ_PROFILE" />
46 <uses-permission android:name="android.permission.READ_CONTACTS" />
Leon Scroggins04b2e8e2009-07-27 11:07:09 -040047 <uses-permission android:name="com.android.browser.permission.READ_HISTORY_BOOKMARKS"/>
48 <uses-permission android:name="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS"/>
Jeff Hamiltona9bad832010-09-24 11:05:30 -050049 <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"/>
Axesh R. Ajmera70a6ec72014-06-10 18:03:50 -070050 <uses-permission android:name="com.android.swe.browser.permission.READ_HOMEPAGE" />
51 <uses-permission android:name="com.android.swe.browser.permission.WRITE_HOMEPAGE" />
52 <uses-permission android:name="com.android.swe.browser.permission.INITIALIZE_DATABASE"/>
Bijan Amirzada41242f22014-03-21 12:12:18 -070053 <uses-permission android:name="android.permission.VIBRATE"/>
54 <uses-permission android:name="android.permission.RECORD_AUDIO"/>
55 <uses-permission android:name="android.permission.READ_PHONE_STATE"/>
Tarun Nainani8eb00912014-07-17 12:28:32 -070056 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
The Android Open Source Project0c908882009-03-03 19:32:16 -080057
Bijan Amirzada41242f22014-03-21 12:12:18 -070058 <application android:name="Browser"
Tarun Nainanief749cb2014-05-19 18:16:53 -070059 android:label="@string/application_name_swe"
60 android:icon="@mipmap/ic_launcher_browser_swe"
Christopher Tatede6f1312009-07-07 13:11:41 -070061 android:backupAgent=".BrowserBackupAgent"
Vivek Sekharce2a4832014-03-26 13:26:53 -070062 android:hardwareAccelerated="true"
Enrico Ros1f5a0952014-11-18 20:15:48 -080063 android:taskAffinity="android.task.swe.browser"
64 android:theme="@style/BrowserBase" >
Bijan Amirzada41242f22014-03-21 12:12:18 -070065
qqzhoue6ff8b42013-07-23 17:28:48 +080066 <uses-library android:name="com.qrd.useragent"
67 android:required="false" />
68
Bijan Amirzada41242f22014-03-21 12:12:18 -070069 <provider android:name=".provider.BrowserProvider2"
Tarun Nainanief749cb2014-05-19 18:16:53 -070070 android:authorities="com.android.swe.browser;swe.browser"
John Recka32575d2012-03-01 13:13:44 -080071 android:multiprocess="false"
Nick Kralevich3c2ab032012-07-30 14:23:39 -070072 android:exported="true"
Jeff Hamilton84029622010-08-05 14:29:28 -050073 android:readPermission="com.android.browser.permission.READ_HISTORY_BOOKMARKS"
74 android:writePermission="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS">
75 <path-permission android:path="/bookmarks/search_suggest_query"
76 android:readPermission="android.permission.GLOBAL_SEARCH" />
kayiza58e6fb2013-10-10 13:47:28 +080077 <path-permission android:path="/homepage"
Axesh R. Ajmera70a6ec72014-06-10 18:03:50 -070078 android:readPermission="com.android.swe.browser.permission.READ_HOMEPAGE"
79 android:writePermission="com.android.swe.browser.permission.WRITE_HOMEPAGE" />
Jeff Hamilton84029622010-08-05 14:29:28 -050080 </provider>
Kulanthaivel Palanichamy77942682014-10-28 11:52:06 -070081
82 <activity android:name="BrowserLauncher"
83 android:theme="@android:style/Theme.NoDisplay" >
84 <!-- We are the main entry point of the browser. -->
85 <intent-filter>
86 <action android:name="android.intent.action.MAIN" />
87 <category android:name="android.intent.category.DEFAULT" />
88 <category android:name="android.intent.category.LAUNCHER" />
89 <category android:name="android.intent.category.BROWSABLE" />
90 <category android:name="android.intent.category.APP_BROWSER" />
91 </intent-filter>
92 </activity>
93
Bijan Amirzada41242f22014-03-21 12:12:18 -070094 <activity android:name="BrowserActivity"
Tarun Nainanief749cb2014-05-19 18:16:53 -070095 android:label="@string/application_name_swe"
The Android Open Source Project0c908882009-03-03 19:32:16 -080096 android:launchMode="singleTask"
97 android:alwaysRetainTaskState="true"
Michael Kolb18f252f2012-03-06 13:36:20 -080098 android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale"
Derek Sollenbergerfe7f3f52009-12-18 08:59:22 -050099 android:theme="@style/BrowserTheme"
100 android:windowSoftInputMode="adjustResize" >
Kulanthaivel Palanichamy77942682014-10-28 11:52:06 -0700101
Leon Scroggins58d56c62010-01-28 15:12:40 -0500102 <intent-filter>
103 <action android:name="android.speech.action.VOICE_SEARCH_RESULTS" />
104 <category android:name="android.intent.category.DEFAULT" />
105 </intent-filter>
The Android Open Source Project0c908882009-03-03 19:32:16 -0800106 <!-- For these schemes were not particular MIME type has been
107 supplied, we are a good candidate. -->
108 <intent-filter>
109 <action android:name="android.intent.action.VIEW" />
110 <category android:name="android.intent.category.DEFAULT" />
111 <category android:name="android.intent.category.BROWSABLE" />
112 <data android:scheme="http" />
113 <data android:scheme="https" />
114 <data android:scheme="about" />
Leon Scroggins1ae92f92009-09-15 17:33:20 -0400115 <data android:scheme="javascript" />
The Android Open Source Project0c908882009-03-03 19:32:16 -0800116 </intent-filter>
117 <!-- For these schemes where any of these particular MIME types
118 have been supplied, we are a good candidate. -->
119 <intent-filter>
120 <action android:name="android.intent.action.VIEW" />
121 <category android:name="android.intent.category.BROWSABLE" />
122 <category android:name="android.intent.category.DEFAULT" />
123 <data android:scheme="http" />
124 <data android:scheme="https" />
Mitsuru Oshima25ad8ab2009-06-10 16:26:07 -0700125 <data android:scheme="inline" />
The Android Open Source Project0c908882009-03-03 19:32:16 -0800126 <data android:mimeType="text/html"/>
127 <data android:mimeType="text/plain"/>
128 <data android:mimeType="application/xhtml+xml"/>
129 <data android:mimeType="application/vnd.wap.xhtml+xml"/>
130 </intent-filter>
Elliott Slaughter0ced08c2010-06-30 11:40:42 -0700131 <!-- For viewing saved web archives. -->
132 <intent-filter>
133 <action android:name="android.intent.action.VIEW" />
134 <category android:name="android.intent.category.BROWSABLE" />
135 <category android:name="android.intent.category.DEFAULT" />
136 <data android:scheme="http" />
137 <data android:scheme="https" />
138 <data android:scheme="file" />
139 <data android:mimeType="application/x-webarchive-xml"/>
140 </intent-filter>
Jeff Hamiltonfd77aaa2011-06-17 16:19:33 -0500141 <!-- Accept inbound NFC URLs at a low priority -->
142 <intent-filter android:priority="-101">
143 <action android:name="android.nfc.action.NDEF_DISCOVERED" />
144 <category android:name="android.intent.category.DEFAULT" />
145 <data android:scheme="http" />
146 <data android:scheme="https" />
147 </intent-filter>
The Android Open Source Project0c908882009-03-03 19:32:16 -0800148 <!-- The maps app is a much better experience, so it's not
149 worth having this at all... especially for a demo!
150 <intent-filter android:label="Map In Browser">
151 <action android:name="android.intent.action.VIEW" />
152 <category android:name="android.intent.category.DEFAULT" />
153 <data android:mimeType="vnd.android.cursor.item/postal-address" />
154 </intent-filter>
155 -->
156 <intent-filter>
157 <action android:name="android.intent.action.WEB_SEARCH" />
158 <category android:name="android.intent.category.DEFAULT" />
159 <category android:name="android.intent.category.BROWSABLE" />
160 <data android:scheme="" />
161 <data android:scheme="http" />
162 <data android:scheme="https" />
163 </intent-filter>
164 <intent-filter>
The Android Open Source Project0c908882009-03-03 19:32:16 -0800165 <action android:name="android.intent.action.MEDIA_SEARCH" />
166 <category android:name="android.intent.category.DEFAULT" />
167 </intent-filter>
168 <intent-filter>
169 <action android:name="android.intent.action.SEARCH" />
170 <category android:name="android.intent.category.DEFAULT" />
171 </intent-filter>
172 <meta-data android:name="android.app.searchable"
173 android:resource="@xml/searchable" />
The Android Open Source Project0c908882009-03-03 19:32:16 -0800174 </activity>
The Android Open Source Project0c908882009-03-03 19:32:16 -0800175
Bijan Amirzada41242f22014-03-21 12:12:18 -0700176 <activity android:name="ShortcutActivity"
Michael Kolb801ecb72010-08-25 12:57:38 -0700177 android:theme="@style/ShortcutTheme"
Romain Guydb6c3912009-03-24 18:08:40 -0700178 android:label="@string/shortcut_bookmark"
Ying Wang79697cb2010-11-23 11:17:46 -0800179 android:icon="@mipmap/ic_launcher_shortcut_browser_bookmark">
The Android Open Source Project0c908882009-03-03 19:32:16 -0800180 <intent-filter>
181 <action android:name="android.intent.action.CREATE_SHORTCUT" />
182 <category android:name="android.intent.category.DEFAULT" />
183 </intent-filter>
Michael Kolb801ecb72010-08-25 12:57:38 -0700184 </activity>
The Android Open Source Project0c908882009-03-03 19:32:16 -0800185
Bijan Amirzada41242f22014-03-21 12:12:18 -0700186 <activity android:name="BrowserPreferencesPage" android:label="@string/menu_preferences">
John Reck7b182d72011-07-08 10:30:53 -0700187 <intent-filter>
188 <action android:name="android.intent.action.MANAGE_NETWORK_USAGE" />
189 <category android:name="android.intent.category.DEFAULT" />
190 </intent-filter>
The Android Open Source Project0c908882009-03-03 19:32:16 -0800191 </activity>
192
Bijan Amirzada41242f22014-03-21 12:12:18 -0700193 <activity android:name="BookmarkSearch"
Bjorn Bringerte90ede42009-04-29 22:33:52 +0100194 android:label="@string/bookmarks_search"
195 android:stateNotNeeded="true"
196 android:theme="@android:style/Theme.NoDisplay"
197 android:excludeFromRecents="true">
198 <intent-filter>
199 <action android:name="android.intent.action.SEARCH" />
200 <category android:name="android.intent.category.DEFAULT" />
201 </intent-filter>
202 <meta-data android:name="android.app.searchable"
203 android:resource="@xml/bookmarks_searchable" />
204 </activity>
205
Bijan Amirzada41242f22014-03-21 12:12:18 -0700206 <activity android:name="AddBookmarkPage" android:label="@string/bookmarks_add_page"
John Reck9d27ff52011-02-11 17:47:54 -0800207 android:theme="@style/DialogWhenLarge"
John Reckaf58d392012-05-22 17:47:06 -0700208 android:configChanges="orientation|keyboardHidden|screenSize"
209 android:windowSoftInputMode="adjustResize">
The Android Open Source Project0c908882009-03-03 19:32:16 -0800210 <intent-filter>
211 <action android:name="android.intent.action.INSERT" />
212 <category android:name="android.intent.category.DEFAULT" />
213 <data android:mimeType="vnd.android.cursor.dir/bookmark"/>
214 </intent-filter>
215 </activity>
216
Bijan Amirzada41242f22014-03-21 12:12:18 -0700217 <activity android:name="DownloadSettings" android:label="@string/download_settings_title"
luxiaol62677b02013-07-22 07:54:49 +0800218 android:theme="@style/DialogWhenLarge"
219 android:launchMode="singleTask"
220 android:configChanges="orientation|keyboardHidden|screenSize"
221 android:windowSoftInputMode="adjustResize">
222 <intent-filter>
Vivek Sekharce2a4832014-03-26 13:26:53 -0700223 <action android:name="android.intent.action.BROWSERDOWNLOAD" />
Bijan Amirzada41242f22014-03-21 12:12:18 -0700224 <category android:name="android.intent.category.DEFAULT" />
luxiaol62677b02013-07-22 07:54:49 +0800225 </intent-filter>
226 </activity>
John Reckd3e4d5b2011-07-13 15:48:43 -0700227
Bijan Amirzada41242f22014-03-21 12:12:18 -0700228 <!-- For creating new folder in bookmarks page -->
229 <activity android:name="AddBookmarkFolder" android:label="@string/save_bookmark_folder"
luxiaoldbe4a622013-07-19 17:14:06 +0800230 android:theme="@style/DialogWhenLarge"
231 android:configChanges="orientation|keyboardHidden|screenSize">
Vivek Sekharce2a4832014-03-26 13:26:53 -0700232 <intent-filter>
233 <category android:name="android.intent.category.DEFAULT" />
234 <data android:mimeType="vnd.android.cursor.dir/bookmark"/>
235 </intent-filter>
Bijan Amirzada41242f22014-03-21 12:12:18 -0700236 </activity>
237
238 <activity android:name="ComboViewActivity">
luxiaoldbe4a622013-07-19 17:14:06 +0800239 </activity>
240
John Reck1537b772011-01-11 15:36:01 -0800241 <!-- Bookmark thumbnail homescreen widget -->
Michael Kolb0382be22010-08-15 15:48:37 -0700242 <receiver
Bijan Amirzada41242f22014-03-21 12:12:18 -0700243 android:name=".widget.BookmarkThumbnailWidgetProvider"
Michael Kolb0382be22010-08-15 15:48:37 -0700244 android:label="@string/bookmarks">
245 <intent-filter>
246 <action
247 android:name="android.appwidget.action.APPWIDGET_UPDATE" />
John Reckdf63d2f2010-10-29 11:42:55 -0700248 <action
Bijan Amirzada41242f22014-03-21 12:12:18 -0700249 android:name="com.android.browser.BOOKMARK_APPWIDGET_UPDATE" />
Michael Kolb0382be22010-08-15 15:48:37 -0700250 </intent-filter>
251 <meta-data
252 android:name="android.appwidget.provider"
John Reck1537b772011-01-11 15:36:01 -0800253 android:resource="@xml/bookmarkthumbnailwidget_info" />
Michael Kolb0382be22010-08-15 15:48:37 -0700254 </receiver>
255 <service
Bijan Amirzada41242f22014-03-21 12:12:18 -0700256 android:name=".widget.BookmarkThumbnailWidgetService"
Winson Chung899cdf42011-01-18 15:24:44 -0800257 android:permission="android.permission.BIND_REMOTEVIEWS"
258 android:exported="false" />
John Reck99c6d332011-02-01 12:57:06 -0800259 <receiver
Bijan Amirzada41242f22014-03-21 12:12:18 -0700260 android:name=".widget.BookmarkWidgetProxy"
John Reck99c6d332011-02-01 12:57:06 -0800261 android:exported="false" />
Bijan Amirzada41242f22014-03-21 12:12:18 -0700262 <activity android:name=".widget.BookmarkWidgetConfigure"
Enrico Ros1f5a0952014-11-18 20:15:48 -0800263 android:theme="@style/DialogWhenLarge">
John Reck9b8cd1e2011-05-25 18:14:01 -0700264 <intent-filter>
265 <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE"/>
266 </intent-filter>
267 </activity>
Vivek Sekharce2a4832014-03-26 13:26:53 -0700268 <!-- add or edit my navigation activity -->
269 <activity android:name=".mynavigation.AddMyNavigationPage"
270 android:label="@string/my_navigation_page_title"
271 android:configChanges="orientation|keyboardHidden"
272 android:windowSoftInputMode="stateHidden">
273 </activity>
Michael Kolb0382be22010-08-15 15:48:37 -0700274
The Android Open Source Project0c908882009-03-03 19:32:16 -0800275 <!-- Makes .BrowserActivity the search target for any activity in Browser -->
276 <meta-data android:name="android.app.default_searchable" android:value=".BrowserActivity" />
277
Bijan Amirzada41242f22014-03-21 12:12:18 -0700278 <receiver android:name=".OpenDownloadReceiver">
Leon Scrogginsfedc4932010-01-26 14:15:01 -0500279 <intent-filter>
280 <action android:name="android.intent.action.DOWNLOAD_NOTIFICATION_CLICKED"/>
Leon Scrogginsfedc4932010-01-26 14:15:01 -0500281 </intent-filter>
282 </receiver>
John Reckbafe58a2011-01-11 10:26:02 -0800283
284 <!-- For custom home pages (like most visited) -->
285 <provider
Bijan Amirzada41242f22014-03-21 12:12:18 -0700286 android:name=".homepages.HomeProvider"
Tarun Nainanief749cb2014-05-19 18:16:53 -0700287 android:authorities="com.android.swe.browser.home"
yanglv960bcd62013-10-23 16:40:25 +0800288 android:grantUriPermissions="true"
John Reckbafe58a2011-01-11 10:26:02 -0800289 android:readPermission="com.android.browser.permission.READ_HISTORY_BOOKMARKS"
290 android:exported="false" />
John Reck267b6af2011-01-19 10:15:47 -0800291
Bijan Amirzada41242f22014-03-21 12:12:18 -0700292 <receiver android:name=".AccountsChangedReceiver">
John Reck5a775372011-06-17 14:27:24 -0700293 <intent-filter>
294 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" />
295 </intent-filter>
296 </receiver>
297
Vivek Sekharce2a4832014-03-26 13:26:53 -0700298 <receiver android:name=".MessagesReceiver">
299 <intent-filter>
300 <action android:name="com.android.mms.transaction.MESSAGE_RECEIVED" />
301 </intent-filter>
302 </receiver>
303
Bijan Amirzada41242f22014-03-21 12:12:18 -0700304 <receiver android:name=".PreloadRequestReceiver"
Axesh R. Ajmera70a6ec72014-06-10 18:03:50 -0700305 android:permission="com.android.swe.browser.permission.PRELOAD" >
Michael Kolb14612442011-06-24 13:06:29 -0700306 <intent-filter>
307 <action android:name="android.intent.action.PRELOAD"/>
308 <data android:scheme="http" />
309 </intent-filter>
310 </receiver>
311
Bijan Amirzada41242f22014-03-21 12:12:18 -0700312 <provider android:name=".provider.SnapshotProvider"
Tarun Nainanief749cb2014-05-19 18:16:53 -0700313 android:authorities="com.android.swe.browser.snapshots"
John Reck8cc92352011-07-06 17:41:52 -0700314 android:exported="false" />
Vivek Sekharce2a4832014-03-26 13:26:53 -0700315 <provider
316 android:name=".provider.MyNavigationProvider"
Tarun Nainanief749cb2014-05-19 18:16:53 -0700317 android:authorities="com.android.swe.browser.mynavigation"
Axesh R. Ajmera2e241242014-05-19 15:53:38 -0700318 android:exported="false"
319 android:grantUriPermissions="true"/>
John Reck8cc92352011-07-06 17:41:52 -0700320
Bijan Amirzada9b1e9882014-02-26 17:15:46 -0800321 <service android:name="org.chromium.content.app.SandboxedProcessService0"
322 android:process=":sandboxed_process0"
323 android:permission="org.chromium.content_shell.permission.SANDBOX"
324 android:isolatedProcess="true"
325 android:exported="false" />
326 <service android:name="org.chromium.content.app.SandboxedProcessService1"
327 android:process=":sandboxed_process1"
328 android:permission="org.chromium.content_shell.permission.SANDBOX"
329 android:isolatedProcess="true"
330 android:exported="false" />
331 <service android:name="org.chromium.content.app.SandboxedProcessService2"
332 android:process=":sandboxed_process2"
333 android:permission="org.chromium.content_shell.permission.SANDBOX"
334 android:isolatedProcess="true"
335 android:exported="false" />
336 <service android:name="org.chromium.content.app.SandboxedProcessService3"
337 android:process=":sandboxed_process3"
338 android:permission="org.chromium.content_shell.permission.SANDBOX"
339 android:isolatedProcess="true"
340 android:exported="false" />
341 <service android:name="org.chromium.content.app.SandboxedProcessService4"
342 android:process=":sandboxed_process4"
343 android:permission="org.chromium.content_shell.permission.SANDBOX"
344 android:isolatedProcess="true"
345 android:exported="false" />
346 <service android:name="org.chromium.content.app.SandboxedProcessService5"
347 android:process=":sandboxed_process5"
348 android:permission="org.chromium.content_shell.permission.SANDBOX"
349 android:isolatedProcess="true"
350 android:exported="false" />
351 <service android:name="org.chromium.content.app.SandboxedProcessService6"
352 android:process=":sandboxed_process6"
353 android:permission="org.chromium.content_shell.permission.SANDBOX"
354 android:isolatedProcess="true"
355 android:exported="false" />
356 <service android:name="org.chromium.content.app.SandboxedProcessService7"
357 android:process=":sandboxed_process7"
358 android:permission="org.chromium.content_shell.permission.SANDBOX"
359 android:isolatedProcess="true"
360 android:exported="false" />
361 <service android:name="org.chromium.content.app.SandboxedProcessService8"
362 android:process=":sandboxed_process8"
363 android:permission="org.chromium.content_shell.permission.SANDBOX"
364 android:isolatedProcess="true"
365 android:exported="false" />
366 <service android:name="org.chromium.content.app.SandboxedProcessService9"
367 android:process=":sandboxed_process9"
368 android:permission="org.chromium.content_shell.permission.SANDBOX"
369 android:isolatedProcess="true"
370 android:exported="false" />
371 <service android:name="org.chromium.content.app.SandboxedProcessService10"
372 android:process=":sandboxed_process10"
373 android:permission="org.chromium.content_shell.permission.SANDBOX"
374 android:isolatedProcess="true"
375 android:exported="false" />
376 <service android:name="org.chromium.content.app.SandboxedProcessService11"
377 android:process=":sandboxed_process11"
378 android:permission="org.chromium.content_shell.permission.SANDBOX"
379 android:isolatedProcess="true"
380 android:exported="false" />
381 <service android:name="org.chromium.content.app.SandboxedProcessService12"
382 android:process=":sandboxed_process12"
383 android:permission="org.chromium.content_shell.permission.SANDBOX"
384 android:isolatedProcess="true"
385 android:exported="false" />
386 <service android:name="org.chromium.content.app.SandboxedProcessService13"
387 android:process=":sandboxed_process13"
388 android:permission="org.chromium.content_shell.permission.SANDBOX"
389 android:isolatedProcess="true"
390 android:exported="false" />
Tarun Nainani8eb00912014-07-17 12:28:32 -0700391 <service android:name="org.chromium.content.app.SandboxedProcessService14"
392 android:process=":sandboxed_process14"
393 android:permission="org.chromium.content_shell.permission.SANDBOX"
394 android:isolatedProcess="true"
395 android:exported="false" />
396 <service android:name="org.chromium.content.app.SandboxedProcessService15"
397 android:process=":sandboxed_process15"
398 android:permission="org.chromium.content_shell.permission.SANDBOX"
399 android:isolatedProcess="true"
400 android:exported="false" />
401 <service android:name="org.chromium.content.app.SandboxedProcessService16"
402 android:process=":sandboxed_process16"
403 android:permission="org.chromium.content_shell.permission.SANDBOX"
404 android:isolatedProcess="true"
405 android:exported="false" />
406 <service android:name="org.chromium.content.app.SandboxedProcessService17"
407 android:process=":sandboxed_process17"
408 android:permission="org.chromium.content_shell.permission.SANDBOX"
409 android:isolatedProcess="true"
410 android:exported="false" />
411 <service android:name="org.chromium.content.app.SandboxedProcessService18"
412 android:process=":sandboxed_process18"
413 android:permission="org.chromium.content_shell.permission.SANDBOX"
414 android:isolatedProcess="true"
415 android:exported="false" />
416 <service android:name="org.chromium.content.app.SandboxedProcessService19"
417 android:process=":sandboxed_process19"
418 android:permission="org.chromium.content_shell.permission.SANDBOX"
419 android:isolatedProcess="true"
420 android:exported="false" />
The Android Open Source Project0c908882009-03-03 19:32:16 -0800421 </application>
422
Vivek Sekhar0989b452014-08-01 12:30:35 -0700423 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="19" />
The Android Open Source Project0c908882009-03-03 19:32:16 -0800424
Bijan Amirzada9b1e9882014-02-26 17:15:46 -0800425 <uses-feature android:name="android.hardware.location.gps" android:required="false" />
426
Bijan Amirzada41242f22014-03-21 12:12:18 -0700427</manifest>
428