blob: cb8dbc46bf523587efacf135e31be7863aa31875 [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
Bijan Amirzada41242f22014-03-21 12:12:18 -070021 <original-package android:name="com.android.browser" />
Jeff Hamilton660d2852010-02-11 16:25:47 -060022
Bijan Amirzada41242f22014-03-21 12:12:18 -070023 <permission android:name="com.android.browser.permission.PRELOAD"
Michael Kolb14612442011-06-24 13:06:29 -070024 android:label="@string/permission_preload_label"
25 android:protectionLevel="signatureOrSystem" />
Bijan Amirzada41242f22014-03-21 12:12:18 -070026 <permission android:name="com.android.browser.permission.INITIALIZE_DATABASE"
27 android:protectionLevel="signatureOrSystem" />
28 <permission android:name="org.chromium.content_shell.permission.SANDBOX"
Bijan Amirzada9b1e9882014-02-26 17:15:46 -080029 android:protectionLevel="signatureOrSystem" />
Michael Kolb14612442011-06-24 13:06:29 -070030
The Android Open Source Project0c908882009-03-03 19:32:16 -080031 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
32 <uses-permission android:name="android.permission.ACCESS_DOWNLOAD_MANAGER"/>
33 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
34 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
35 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
Jeff Hamiltona9bad832010-09-24 11:05:30 -050036 <uses-permission android:name="android.permission.GET_ACCOUNTS"/>
Patrick Scottd05faa62010-12-16 09:15:34 -050037 <uses-permission android:name="android.permission.USE_CREDENTIALS"/>
The Android Open Source Project0c908882009-03-03 19:32:16 -080038 <uses-permission android:name="android.permission.INTERNET" />
Martijn Coenenb2f93552011-06-14 10:48:35 +020039 <uses-permission android:name="android.permission.NFC" />
Jeff Hamiltona9bad832010-09-24 11:05:30 -050040 <uses-permission android:name="android.permission.SEND_DOWNLOAD_COMPLETED_INTENTS" />
Ben Murdoch4f75ba22009-10-27 11:48:28 +000041 <uses-permission android:name="android.permission.SET_WALLPAPER" />
The Android Open Source Project0c908882009-03-03 19:32:16 -080042 <uses-permission android:name="android.permission.WAKE_LOCK"/>
Grace Kloba4d7880f2009-08-12 09:35:42 -070043 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Bjorn Bringertd69f51d2010-09-13 14:06:41 +010044 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
John Reck267b6af2011-01-19 10:15:47 -080045 <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
Jeff Hamiltona9bad832010-09-24 11:05:30 -050046 <uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" />
John Reck77263772011-02-10 13:57:30 -080047 <uses-permission android:name="android.permission.MANAGE_ACCOUNTS" />
Ben Murdoch3d6c7192011-10-27 18:04:58 +010048 <uses-permission android:name="android.permission.READ_PROFILE" />
49 <uses-permission android:name="android.permission.READ_CONTACTS" />
Leon Scroggins04b2e8e2009-07-27 11:07:09 -040050 <uses-permission android:name="com.android.browser.permission.READ_HISTORY_BOOKMARKS"/>
51 <uses-permission android:name="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS"/>
Jeff Hamiltona9bad832010-09-24 11:05:30 -050052 <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"/>
Bijan Amirzada41242f22014-03-21 12:12:18 -070053 <uses-permission android:name="com.android.browser.permission.READ_HOMEPAGE" />
54 <uses-permission android:name="com.android.browser.permission.WRITE_HOMEPAGE" />
55 <uses-permission android:name="com.android.browser.permission.INITIALIZE_DATABASE"/>
56 <uses-permission android:name="android.permission.VIBRATE"/>
57 <uses-permission android:name="android.permission.RECORD_AUDIO"/>
58 <uses-permission android:name="android.permission.READ_PHONE_STATE"/>
The Android Open Source Project0c908882009-03-03 19:32:16 -080059
Bijan Amirzada41242f22014-03-21 12:12:18 -070060 <application android:name="Browser"
The Android Open Source Project0c908882009-03-03 19:32:16 -080061 android:label="@string/application_name"
Ying Wang79697cb2010-11-23 11:17:46 -080062 android:icon="@mipmap/ic_launcher_browser"
Christopher Tatede6f1312009-07-07 13:11:41 -070063 android:backupAgent=".BrowserBackupAgent"
Bijan Amirzada41242f22014-03-21 12:12:18 -070064 android:hardwareAccelerated="false"
The Android Open Source Project0c908882009-03-03 19:32:16 -080065 android:taskAffinity="android.task.browser" >
Bijan Amirzada41242f22014-03-21 12:12:18 -070066
qqzhoue6ff8b42013-07-23 17:28:48 +080067 <uses-library android:name="com.qrd.useragent"
68 android:required="false" />
69
Bijan Amirzada41242f22014-03-21 12:12:18 -070070 <provider android:name=".provider.BrowserProvider2"
71 android:authorities="com.android.browser;browser"
John Recka32575d2012-03-01 13:13:44 -080072 android:multiprocess="false"
Nick Kralevich3c2ab032012-07-30 14:23:39 -070073 android:exported="true"
Jeff Hamilton84029622010-08-05 14:29:28 -050074 android:readPermission="com.android.browser.permission.READ_HISTORY_BOOKMARKS"
75 android:writePermission="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS">
76 <path-permission android:path="/bookmarks/search_suggest_query"
77 android:readPermission="android.permission.GLOBAL_SEARCH" />
kayiza58e6fb2013-10-10 13:47:28 +080078 <path-permission android:path="/homepage"
Bijan Amirzada41242f22014-03-21 12:12:18 -070079 android:readPermission="com.android.browser.permission.READ_HOMEPAGE"
80 android:writePermission="com.android.browser.permission.WRITE_HOMEPAGE" />
Jeff Hamilton84029622010-08-05 14:29:28 -050081 </provider>
Bijan Amirzada41242f22014-03-21 12:12:18 -070082 <activity android:name="BrowserActivity"
The Android Open Source Project0c908882009-03-03 19:32:16 -080083 android:label="@string/application_name"
84 android:launchMode="singleTask"
85 android:alwaysRetainTaskState="true"
Michael Kolb18f252f2012-03-06 13:36:20 -080086 android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale"
Derek Sollenbergerfe7f3f52009-12-18 08:59:22 -050087 android:theme="@style/BrowserTheme"
88 android:windowSoftInputMode="adjustResize" >
Leon Scroggins58d56c62010-01-28 15:12:40 -050089 <intent-filter>
90 <action android:name="android.speech.action.VOICE_SEARCH_RESULTS" />
91 <category android:name="android.intent.category.DEFAULT" />
92 </intent-filter>
The Android Open Source Project0c908882009-03-03 19:32:16 -080093 <!-- For these schemes were not particular MIME type has been
94 supplied, we are a good candidate. -->
95 <intent-filter>
96 <action android:name="android.intent.action.VIEW" />
97 <category android:name="android.intent.category.DEFAULT" />
98 <category android:name="android.intent.category.BROWSABLE" />
99 <data android:scheme="http" />
100 <data android:scheme="https" />
101 <data android:scheme="about" />
Leon Scroggins1ae92f92009-09-15 17:33:20 -0400102 <data android:scheme="javascript" />
The Android Open Source Project0c908882009-03-03 19:32:16 -0800103 </intent-filter>
104 <!-- For these schemes where any of these particular MIME types
105 have been supplied, we are a good candidate. -->
106 <intent-filter>
107 <action android:name="android.intent.action.VIEW" />
108 <category android:name="android.intent.category.BROWSABLE" />
109 <category android:name="android.intent.category.DEFAULT" />
110 <data android:scheme="http" />
111 <data android:scheme="https" />
Mitsuru Oshima25ad8ab2009-06-10 16:26:07 -0700112 <data android:scheme="inline" />
The Android Open Source Project0c908882009-03-03 19:32:16 -0800113 <data android:mimeType="text/html"/>
114 <data android:mimeType="text/plain"/>
115 <data android:mimeType="application/xhtml+xml"/>
116 <data android:mimeType="application/vnd.wap.xhtml+xml"/>
117 </intent-filter>
Elliott Slaughter0ced08c2010-06-30 11:40:42 -0700118 <!-- For viewing saved web archives. -->
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" />
125 <data android:scheme="file" />
126 <data android:mimeType="application/x-webarchive-xml"/>
127 </intent-filter>
Jeff Hamiltonfd77aaa2011-06-17 16:19:33 -0500128 <!-- Accept inbound NFC URLs at a low priority -->
129 <intent-filter android:priority="-101">
130 <action android:name="android.nfc.action.NDEF_DISCOVERED" />
131 <category android:name="android.intent.category.DEFAULT" />
132 <data android:scheme="http" />
133 <data android:scheme="https" />
134 </intent-filter>
The Android Open Source Project0c908882009-03-03 19:32:16 -0800135 <!-- We are also the main entry point of the browser. -->
136 <intent-filter>
137 <action android:name="android.intent.action.MAIN" />
138 <category android:name="android.intent.category.DEFAULT" />
139 <category android:name="android.intent.category.LAUNCHER" />
140 <category android:name="android.intent.category.BROWSABLE" />
Jeff Brown6af55fa2011-11-28 16:32:57 -0800141 <category android:name="android.intent.category.APP_BROWSER" />
The Android Open Source Project0c908882009-03-03 19:32:16 -0800142 </intent-filter>
143 <!-- The maps app is a much better experience, so it's not
144 worth having this at all... especially for a demo!
145 <intent-filter android:label="Map In Browser">
146 <action android:name="android.intent.action.VIEW" />
147 <category android:name="android.intent.category.DEFAULT" />
148 <data android:mimeType="vnd.android.cursor.item/postal-address" />
149 </intent-filter>
150 -->
151 <intent-filter>
152 <action android:name="android.intent.action.WEB_SEARCH" />
153 <category android:name="android.intent.category.DEFAULT" />
154 <category android:name="android.intent.category.BROWSABLE" />
155 <data android:scheme="" />
156 <data android:scheme="http" />
157 <data android:scheme="https" />
158 </intent-filter>
159 <intent-filter>
The Android Open Source Project0c908882009-03-03 19:32:16 -0800160 <action android:name="android.intent.action.MEDIA_SEARCH" />
161 <category android:name="android.intent.category.DEFAULT" />
162 </intent-filter>
163 <intent-filter>
164 <action android:name="android.intent.action.SEARCH" />
165 <category android:name="android.intent.category.DEFAULT" />
166 </intent-filter>
167 <meta-data android:name="android.app.searchable"
168 android:resource="@xml/searchable" />
The Android Open Source Project0c908882009-03-03 19:32:16 -0800169 </activity>
The Android Open Source Project0c908882009-03-03 19:32:16 -0800170
Bijan Amirzada41242f22014-03-21 12:12:18 -0700171 <activity android:name="ShortcutActivity"
Michael Kolb801ecb72010-08-25 12:57:38 -0700172 android:theme="@style/ShortcutTheme"
Romain Guydb6c3912009-03-24 18:08:40 -0700173 android:label="@string/shortcut_bookmark"
Ying Wang79697cb2010-11-23 11:17:46 -0800174 android:icon="@mipmap/ic_launcher_shortcut_browser_bookmark">
The Android Open Source Project0c908882009-03-03 19:32:16 -0800175 <intent-filter>
176 <action android:name="android.intent.action.CREATE_SHORTCUT" />
177 <category android:name="android.intent.category.DEFAULT" />
178 </intent-filter>
Michael Kolb801ecb72010-08-25 12:57:38 -0700179 </activity>
The Android Open Source Project0c908882009-03-03 19:32:16 -0800180
Bijan Amirzada41242f22014-03-21 12:12:18 -0700181 <activity android:name="BrowserPreferencesPage" android:label="@string/menu_preferences">
John Reck7b182d72011-07-08 10:30:53 -0700182 <intent-filter>
183 <action android:name="android.intent.action.MANAGE_NETWORK_USAGE" />
184 <category android:name="android.intent.category.DEFAULT" />
185 </intent-filter>
The Android Open Source Project0c908882009-03-03 19:32:16 -0800186 </activity>
187
Bijan Amirzada41242f22014-03-21 12:12:18 -0700188 <activity android:name="BookmarkSearch"
Bjorn Bringerte90ede42009-04-29 22:33:52 +0100189 android:label="@string/bookmarks_search"
190 android:stateNotNeeded="true"
191 android:theme="@android:style/Theme.NoDisplay"
192 android:excludeFromRecents="true">
193 <intent-filter>
194 <action android:name="android.intent.action.SEARCH" />
195 <category android:name="android.intent.category.DEFAULT" />
196 </intent-filter>
197 <meta-data android:name="android.app.searchable"
198 android:resource="@xml/bookmarks_searchable" />
199 </activity>
200
Bijan Amirzada41242f22014-03-21 12:12:18 -0700201 <activity android:name="AddBookmarkPage" android:label="@string/bookmarks_add_page"
John Reck9d27ff52011-02-11 17:47:54 -0800202 android:theme="@style/DialogWhenLarge"
John Reckaf58d392012-05-22 17:47:06 -0700203 android:configChanges="orientation|keyboardHidden|screenSize"
204 android:windowSoftInputMode="adjustResize">
The Android Open Source Project0c908882009-03-03 19:32:16 -0800205 <intent-filter>
206 <action android:name="android.intent.action.INSERT" />
207 <category android:name="android.intent.category.DEFAULT" />
208 <data android:mimeType="vnd.android.cursor.dir/bookmark"/>
209 </intent-filter>
210 </activity>
211
Bijan Amirzada41242f22014-03-21 12:12:18 -0700212 <activity android:name="DownloadSettings" android:label="@string/download_settings_title"
luxiaol62677b02013-07-22 07:54:49 +0800213 android:theme="@style/DialogWhenLarge"
214 android:launchMode="singleTask"
215 android:configChanges="orientation|keyboardHidden|screenSize"
216 android:windowSoftInputMode="adjustResize">
217 <intent-filter>
Bijan Amirzada41242f22014-03-21 12:12:18 -0700218 <action android:name="android.intent.action.BROWSER_DOWNLOAD" />
219 <category android:name="android.intent.category.DEFAULT" />
luxiaol62677b02013-07-22 07:54:49 +0800220 </intent-filter>
221 </activity>
John Reckd3e4d5b2011-07-13 15:48:43 -0700222
Bijan Amirzada41242f22014-03-21 12:12:18 -0700223 <!-- For creating new folder in bookmarks page -->
224 <activity android:name="AddBookmarkFolder" android:label="@string/save_bookmark_folder"
luxiaoldbe4a622013-07-19 17:14:06 +0800225 android:theme="@style/DialogWhenLarge"
226 android:configChanges="orientation|keyboardHidden|screenSize">
Bijan Amirzada41242f22014-03-21 12:12:18 -0700227 </activity>
228
229 <activity android:name="ComboViewActivity">
luxiaoldbe4a622013-07-19 17:14:06 +0800230 </activity>
231
John Reck1537b772011-01-11 15:36:01 -0800232 <!-- Bookmark thumbnail homescreen widget -->
Michael Kolb0382be22010-08-15 15:48:37 -0700233 <receiver
Bijan Amirzada41242f22014-03-21 12:12:18 -0700234 android:name=".widget.BookmarkThumbnailWidgetProvider"
Michael Kolb0382be22010-08-15 15:48:37 -0700235 android:label="@string/bookmarks">
236 <intent-filter>
237 <action
238 android:name="android.appwidget.action.APPWIDGET_UPDATE" />
John Reckdf63d2f2010-10-29 11:42:55 -0700239 <action
Bijan Amirzada41242f22014-03-21 12:12:18 -0700240 android:name="com.android.browser.BOOKMARK_APPWIDGET_UPDATE" />
Michael Kolb0382be22010-08-15 15:48:37 -0700241 </intent-filter>
242 <meta-data
243 android:name="android.appwidget.provider"
John Reck1537b772011-01-11 15:36:01 -0800244 android:resource="@xml/bookmarkthumbnailwidget_info" />
Michael Kolb0382be22010-08-15 15:48:37 -0700245 </receiver>
246 <service
Bijan Amirzada41242f22014-03-21 12:12:18 -0700247 android:name=".widget.BookmarkThumbnailWidgetService"
Winson Chung899cdf42011-01-18 15:24:44 -0800248 android:permission="android.permission.BIND_REMOTEVIEWS"
249 android:exported="false" />
John Reck99c6d332011-02-01 12:57:06 -0800250 <receiver
Bijan Amirzada41242f22014-03-21 12:12:18 -0700251 android:name=".widget.BookmarkWidgetProxy"
John Reck99c6d332011-02-01 12:57:06 -0800252 android:exported="false" />
Bijan Amirzada41242f22014-03-21 12:12:18 -0700253 <activity android:name=".widget.BookmarkWidgetConfigure"
John Reck9b8cd1e2011-05-25 18:14:01 -0700254 android:theme="@android:style/Theme.Holo.DialogWhenLarge">
255 <intent-filter>
256 <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE"/>
257 </intent-filter>
258 </activity>
Michael Kolb0382be22010-08-15 15:48:37 -0700259
The Android Open Source Project0c908882009-03-03 19:32:16 -0800260 <!-- Makes .BrowserActivity the search target for any activity in Browser -->
261 <meta-data android:name="android.app.default_searchable" android:value=".BrowserActivity" />
262
Bijan Amirzada41242f22014-03-21 12:12:18 -0700263 <receiver android:name=".OpenDownloadReceiver">
Leon Scrogginsfedc4932010-01-26 14:15:01 -0500264 <intent-filter>
265 <action android:name="android.intent.action.DOWNLOAD_NOTIFICATION_CLICKED"/>
Leon Scrogginsfedc4932010-01-26 14:15:01 -0500266 </intent-filter>
267 </receiver>
John Reckbafe58a2011-01-11 10:26:02 -0800268
269 <!-- For custom home pages (like most visited) -->
270 <provider
Bijan Amirzada41242f22014-03-21 12:12:18 -0700271 android:name=".homepages.HomeProvider"
272 android:authorities="com.android.browser.home"
yanglv960bcd62013-10-23 16:40:25 +0800273 android:grantUriPermissions="true"
John Reckbafe58a2011-01-11 10:26:02 -0800274 android:readPermission="com.android.browser.permission.READ_HISTORY_BOOKMARKS"
275 android:exported="false" />
John Reck267b6af2011-01-19 10:15:47 -0800276
Bijan Amirzada41242f22014-03-21 12:12:18 -0700277 <receiver android:name=".AccountsChangedReceiver">
John Reck5a775372011-06-17 14:27:24 -0700278 <intent-filter>
279 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" />
280 </intent-filter>
281 </receiver>
282
Bijan Amirzada41242f22014-03-21 12:12:18 -0700283 <receiver android:name=".PreloadRequestReceiver"
284 android:permission="com.android.browser.permission.PRELOAD" >
Michael Kolb14612442011-06-24 13:06:29 -0700285 <intent-filter>
286 <action android:name="android.intent.action.PRELOAD"/>
287 <data android:scheme="http" />
288 </intent-filter>
289 </receiver>
290
Bijan Amirzada41242f22014-03-21 12:12:18 -0700291 <provider android:name=".provider.SnapshotProvider"
292 android:authorities="com.android.browser.snapshots"
John Reck8cc92352011-07-06 17:41:52 -0700293 android:exported="false" />
294
Bijan Amirzada9b1e9882014-02-26 17:15:46 -0800295 <service android:name="org.chromium.content.app.SandboxedProcessService0"
296 android:process=":sandboxed_process0"
297 android:permission="org.chromium.content_shell.permission.SANDBOX"
298 android:isolatedProcess="true"
299 android:exported="false" />
300 <service android:name="org.chromium.content.app.SandboxedProcessService1"
301 android:process=":sandboxed_process1"
302 android:permission="org.chromium.content_shell.permission.SANDBOX"
303 android:isolatedProcess="true"
304 android:exported="false" />
305 <service android:name="org.chromium.content.app.SandboxedProcessService2"
306 android:process=":sandboxed_process2"
307 android:permission="org.chromium.content_shell.permission.SANDBOX"
308 android:isolatedProcess="true"
309 android:exported="false" />
310 <service android:name="org.chromium.content.app.SandboxedProcessService3"
311 android:process=":sandboxed_process3"
312 android:permission="org.chromium.content_shell.permission.SANDBOX"
313 android:isolatedProcess="true"
314 android:exported="false" />
315 <service android:name="org.chromium.content.app.SandboxedProcessService4"
316 android:process=":sandboxed_process4"
317 android:permission="org.chromium.content_shell.permission.SANDBOX"
318 android:isolatedProcess="true"
319 android:exported="false" />
320 <service android:name="org.chromium.content.app.SandboxedProcessService5"
321 android:process=":sandboxed_process5"
322 android:permission="org.chromium.content_shell.permission.SANDBOX"
323 android:isolatedProcess="true"
324 android:exported="false" />
325 <service android:name="org.chromium.content.app.SandboxedProcessService6"
326 android:process=":sandboxed_process6"
327 android:permission="org.chromium.content_shell.permission.SANDBOX"
328 android:isolatedProcess="true"
329 android:exported="false" />
330 <service android:name="org.chromium.content.app.SandboxedProcessService7"
331 android:process=":sandboxed_process7"
332 android:permission="org.chromium.content_shell.permission.SANDBOX"
333 android:isolatedProcess="true"
334 android:exported="false" />
335 <service android:name="org.chromium.content.app.SandboxedProcessService8"
336 android:process=":sandboxed_process8"
337 android:permission="org.chromium.content_shell.permission.SANDBOX"
338 android:isolatedProcess="true"
339 android:exported="false" />
340 <service android:name="org.chromium.content.app.SandboxedProcessService9"
341 android:process=":sandboxed_process9"
342 android:permission="org.chromium.content_shell.permission.SANDBOX"
343 android:isolatedProcess="true"
344 android:exported="false" />
345 <service android:name="org.chromium.content.app.SandboxedProcessService10"
346 android:process=":sandboxed_process10"
347 android:permission="org.chromium.content_shell.permission.SANDBOX"
348 android:isolatedProcess="true"
349 android:exported="false" />
350 <service android:name="org.chromium.content.app.SandboxedProcessService11"
351 android:process=":sandboxed_process11"
352 android:permission="org.chromium.content_shell.permission.SANDBOX"
353 android:isolatedProcess="true"
354 android:exported="false" />
355 <service android:name="org.chromium.content.app.SandboxedProcessService12"
356 android:process=":sandboxed_process12"
357 android:permission="org.chromium.content_shell.permission.SANDBOX"
358 android:isolatedProcess="true"
359 android:exported="false" />
360 <service android:name="org.chromium.content.app.SandboxedProcessService13"
361 android:process=":sandboxed_process13"
362 android:permission="org.chromium.content_shell.permission.SANDBOX"
363 android:isolatedProcess="true"
364 android:exported="false" />
The Android Open Source Project0c908882009-03-03 19:32:16 -0800365 </application>
366
Bijan Amirzada9b1e9882014-02-26 17:15:46 -0800367 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="16" />
The Android Open Source Project0c908882009-03-03 19:32:16 -0800368
Bijan Amirzada9b1e9882014-02-26 17:15:46 -0800369 <uses-feature android:name="android.hardware.location.gps" android:required="false" />
370
Bijan Amirzada41242f22014-03-21 12:12:18 -0700371</manifest>
372