blob: fb5e875b8d5dada3e0fac15dcfa1740fa6a1ac56 [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"
Tarun Nainanief749cb2014-05-19 18:16:53 -070063 android:taskAffinity="android.task.swe.browser" >
Bijan Amirzada41242f22014-03-21 12:12:18 -070064
qqzhoue6ff8b42013-07-23 17:28:48 +080065 <uses-library android:name="com.qrd.useragent"
66 android:required="false" />
67
Bijan Amirzada41242f22014-03-21 12:12:18 -070068 <provider android:name=".provider.BrowserProvider2"
Tarun Nainanief749cb2014-05-19 18:16:53 -070069 android:authorities="com.android.swe.browser;swe.browser"
John Recka32575d2012-03-01 13:13:44 -080070 android:multiprocess="false"
Nick Kralevich3c2ab032012-07-30 14:23:39 -070071 android:exported="true"
Jeff Hamilton84029622010-08-05 14:29:28 -050072 android:readPermission="com.android.browser.permission.READ_HISTORY_BOOKMARKS"
73 android:writePermission="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS">
74 <path-permission android:path="/bookmarks/search_suggest_query"
75 android:readPermission="android.permission.GLOBAL_SEARCH" />
kayiza58e6fb2013-10-10 13:47:28 +080076 <path-permission android:path="/homepage"
Axesh R. Ajmera70a6ec72014-06-10 18:03:50 -070077 android:readPermission="com.android.swe.browser.permission.READ_HOMEPAGE"
78 android:writePermission="com.android.swe.browser.permission.WRITE_HOMEPAGE" />
Jeff Hamilton84029622010-08-05 14:29:28 -050079 </provider>
Bijan Amirzada41242f22014-03-21 12:12:18 -070080 <activity android:name="BrowserActivity"
Tarun Nainanief749cb2014-05-19 18:16:53 -070081 android:label="@string/application_name_swe"
The Android Open Source Project0c908882009-03-03 19:32:16 -080082 android:launchMode="singleTask"
83 android:alwaysRetainTaskState="true"
Michael Kolb18f252f2012-03-06 13:36:20 -080084 android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale"
Derek Sollenbergerfe7f3f52009-12-18 08:59:22 -050085 android:theme="@style/BrowserTheme"
86 android:windowSoftInputMode="adjustResize" >
Leon Scroggins58d56c62010-01-28 15:12:40 -050087 <intent-filter>
88 <action android:name="android.speech.action.VOICE_SEARCH_RESULTS" />
89 <category android:name="android.intent.category.DEFAULT" />
90 </intent-filter>
The Android Open Source Project0c908882009-03-03 19:32:16 -080091 <!-- For these schemes were not particular MIME type has been
92 supplied, we are a good candidate. -->
93 <intent-filter>
94 <action android:name="android.intent.action.VIEW" />
95 <category android:name="android.intent.category.DEFAULT" />
96 <category android:name="android.intent.category.BROWSABLE" />
97 <data android:scheme="http" />
98 <data android:scheme="https" />
99 <data android:scheme="about" />
Leon Scroggins1ae92f92009-09-15 17:33:20 -0400100 <data android:scheme="javascript" />
The Android Open Source Project0c908882009-03-03 19:32:16 -0800101 </intent-filter>
102 <!-- For these schemes where any of these particular MIME types
103 have been supplied, we are a good candidate. -->
104 <intent-filter>
105 <action android:name="android.intent.action.VIEW" />
106 <category android:name="android.intent.category.BROWSABLE" />
107 <category android:name="android.intent.category.DEFAULT" />
108 <data android:scheme="http" />
109 <data android:scheme="https" />
Mitsuru Oshima25ad8ab2009-06-10 16:26:07 -0700110 <data android:scheme="inline" />
The Android Open Source Project0c908882009-03-03 19:32:16 -0800111 <data android:mimeType="text/html"/>
112 <data android:mimeType="text/plain"/>
113 <data android:mimeType="application/xhtml+xml"/>
114 <data android:mimeType="application/vnd.wap.xhtml+xml"/>
115 </intent-filter>
Elliott Slaughter0ced08c2010-06-30 11:40:42 -0700116 <!-- For viewing saved web archives. -->
117 <intent-filter>
118 <action android:name="android.intent.action.VIEW" />
119 <category android:name="android.intent.category.BROWSABLE" />
120 <category android:name="android.intent.category.DEFAULT" />
121 <data android:scheme="http" />
122 <data android:scheme="https" />
123 <data android:scheme="file" />
124 <data android:mimeType="application/x-webarchive-xml"/>
125 </intent-filter>
Jeff Hamiltonfd77aaa2011-06-17 16:19:33 -0500126 <!-- Accept inbound NFC URLs at a low priority -->
127 <intent-filter android:priority="-101">
128 <action android:name="android.nfc.action.NDEF_DISCOVERED" />
129 <category android:name="android.intent.category.DEFAULT" />
130 <data android:scheme="http" />
131 <data android:scheme="https" />
132 </intent-filter>
The Android Open Source Project0c908882009-03-03 19:32:16 -0800133 <!-- We are also the main entry point of the browser. -->
134 <intent-filter>
135 <action android:name="android.intent.action.MAIN" />
136 <category android:name="android.intent.category.DEFAULT" />
137 <category android:name="android.intent.category.LAUNCHER" />
138 <category android:name="android.intent.category.BROWSABLE" />
Jeff Brown6af55fa2011-11-28 16:32:57 -0800139 <category android:name="android.intent.category.APP_BROWSER" />
The Android Open Source Project0c908882009-03-03 19:32:16 -0800140 </intent-filter>
141 <!-- The maps app is a much better experience, so it's not
142 worth having this at all... especially for a demo!
143 <intent-filter android:label="Map In Browser">
144 <action android:name="android.intent.action.VIEW" />
145 <category android:name="android.intent.category.DEFAULT" />
146 <data android:mimeType="vnd.android.cursor.item/postal-address" />
147 </intent-filter>
148 -->
149 <intent-filter>
150 <action android:name="android.intent.action.WEB_SEARCH" />
151 <category android:name="android.intent.category.DEFAULT" />
152 <category android:name="android.intent.category.BROWSABLE" />
153 <data android:scheme="" />
154 <data android:scheme="http" />
155 <data android:scheme="https" />
156 </intent-filter>
157 <intent-filter>
The Android Open Source Project0c908882009-03-03 19:32:16 -0800158 <action android:name="android.intent.action.MEDIA_SEARCH" />
159 <category android:name="android.intent.category.DEFAULT" />
160 </intent-filter>
161 <intent-filter>
162 <action android:name="android.intent.action.SEARCH" />
163 <category android:name="android.intent.category.DEFAULT" />
164 </intent-filter>
165 <meta-data android:name="android.app.searchable"
166 android:resource="@xml/searchable" />
The Android Open Source Project0c908882009-03-03 19:32:16 -0800167 </activity>
The Android Open Source Project0c908882009-03-03 19:32:16 -0800168
Bijan Amirzada41242f22014-03-21 12:12:18 -0700169 <activity android:name="ShortcutActivity"
Michael Kolb801ecb72010-08-25 12:57:38 -0700170 android:theme="@style/ShortcutTheme"
Romain Guydb6c3912009-03-24 18:08:40 -0700171 android:label="@string/shortcut_bookmark"
Ying Wang79697cb2010-11-23 11:17:46 -0800172 android:icon="@mipmap/ic_launcher_shortcut_browser_bookmark">
The Android Open Source Project0c908882009-03-03 19:32:16 -0800173 <intent-filter>
174 <action android:name="android.intent.action.CREATE_SHORTCUT" />
175 <category android:name="android.intent.category.DEFAULT" />
176 </intent-filter>
Michael Kolb801ecb72010-08-25 12:57:38 -0700177 </activity>
The Android Open Source Project0c908882009-03-03 19:32:16 -0800178
Bijan Amirzada41242f22014-03-21 12:12:18 -0700179 <activity android:name="BrowserPreferencesPage" android:label="@string/menu_preferences">
John Reck7b182d72011-07-08 10:30:53 -0700180 <intent-filter>
181 <action android:name="android.intent.action.MANAGE_NETWORK_USAGE" />
182 <category android:name="android.intent.category.DEFAULT" />
183 </intent-filter>
The Android Open Source Project0c908882009-03-03 19:32:16 -0800184 </activity>
185
Bijan Amirzada41242f22014-03-21 12:12:18 -0700186 <activity android:name="BookmarkSearch"
Bjorn Bringerte90ede42009-04-29 22:33:52 +0100187 android:label="@string/bookmarks_search"
188 android:stateNotNeeded="true"
189 android:theme="@android:style/Theme.NoDisplay"
190 android:excludeFromRecents="true">
191 <intent-filter>
192 <action android:name="android.intent.action.SEARCH" />
193 <category android:name="android.intent.category.DEFAULT" />
194 </intent-filter>
195 <meta-data android:name="android.app.searchable"
196 android:resource="@xml/bookmarks_searchable" />
197 </activity>
198
Bijan Amirzada41242f22014-03-21 12:12:18 -0700199 <activity android:name="AddBookmarkPage" android:label="@string/bookmarks_add_page"
John Reck9d27ff52011-02-11 17:47:54 -0800200 android:theme="@style/DialogWhenLarge"
John Reckaf58d392012-05-22 17:47:06 -0700201 android:configChanges="orientation|keyboardHidden|screenSize"
202 android:windowSoftInputMode="adjustResize">
The Android Open Source Project0c908882009-03-03 19:32:16 -0800203 <intent-filter>
204 <action android:name="android.intent.action.INSERT" />
205 <category android:name="android.intent.category.DEFAULT" />
206 <data android:mimeType="vnd.android.cursor.dir/bookmark"/>
207 </intent-filter>
208 </activity>
209
Bijan Amirzada41242f22014-03-21 12:12:18 -0700210 <activity android:name="DownloadSettings" android:label="@string/download_settings_title"
luxiaol62677b02013-07-22 07:54:49 +0800211 android:theme="@style/DialogWhenLarge"
212 android:launchMode="singleTask"
213 android:configChanges="orientation|keyboardHidden|screenSize"
214 android:windowSoftInputMode="adjustResize">
215 <intent-filter>
Vivek Sekharce2a4832014-03-26 13:26:53 -0700216 <action android:name="android.intent.action.BROWSERDOWNLOAD" />
Bijan Amirzada41242f22014-03-21 12:12:18 -0700217 <category android:name="android.intent.category.DEFAULT" />
luxiaol62677b02013-07-22 07:54:49 +0800218 </intent-filter>
219 </activity>
John Reckd3e4d5b2011-07-13 15:48:43 -0700220
Bijan Amirzada41242f22014-03-21 12:12:18 -0700221 <!-- For creating new folder in bookmarks page -->
222 <activity android:name="AddBookmarkFolder" android:label="@string/save_bookmark_folder"
luxiaoldbe4a622013-07-19 17:14:06 +0800223 android:theme="@style/DialogWhenLarge"
224 android:configChanges="orientation|keyboardHidden|screenSize">
Vivek Sekharce2a4832014-03-26 13:26:53 -0700225 <intent-filter>
226 <category android:name="android.intent.category.DEFAULT" />
227 <data android:mimeType="vnd.android.cursor.dir/bookmark"/>
228 </intent-filter>
Bijan Amirzada41242f22014-03-21 12:12:18 -0700229 </activity>
230
231 <activity android:name="ComboViewActivity">
luxiaoldbe4a622013-07-19 17:14:06 +0800232 </activity>
233
John Reck1537b772011-01-11 15:36:01 -0800234 <!-- Bookmark thumbnail homescreen widget -->
Michael Kolb0382be22010-08-15 15:48:37 -0700235 <receiver
Bijan Amirzada41242f22014-03-21 12:12:18 -0700236 android:name=".widget.BookmarkThumbnailWidgetProvider"
Michael Kolb0382be22010-08-15 15:48:37 -0700237 android:label="@string/bookmarks">
238 <intent-filter>
239 <action
240 android:name="android.appwidget.action.APPWIDGET_UPDATE" />
John Reckdf63d2f2010-10-29 11:42:55 -0700241 <action
Bijan Amirzada41242f22014-03-21 12:12:18 -0700242 android:name="com.android.browser.BOOKMARK_APPWIDGET_UPDATE" />
Michael Kolb0382be22010-08-15 15:48:37 -0700243 </intent-filter>
244 <meta-data
245 android:name="android.appwidget.provider"
John Reck1537b772011-01-11 15:36:01 -0800246 android:resource="@xml/bookmarkthumbnailwidget_info" />
Michael Kolb0382be22010-08-15 15:48:37 -0700247 </receiver>
248 <service
Bijan Amirzada41242f22014-03-21 12:12:18 -0700249 android:name=".widget.BookmarkThumbnailWidgetService"
Winson Chung899cdf42011-01-18 15:24:44 -0800250 android:permission="android.permission.BIND_REMOTEVIEWS"
251 android:exported="false" />
John Reck99c6d332011-02-01 12:57:06 -0800252 <receiver
Bijan Amirzada41242f22014-03-21 12:12:18 -0700253 android:name=".widget.BookmarkWidgetProxy"
John Reck99c6d332011-02-01 12:57:06 -0800254 android:exported="false" />
Bijan Amirzada41242f22014-03-21 12:12:18 -0700255 <activity android:name=".widget.BookmarkWidgetConfigure"
John Reck9b8cd1e2011-05-25 18:14:01 -0700256 android:theme="@android:style/Theme.Holo.DialogWhenLarge">
257 <intent-filter>
258 <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE"/>
259 </intent-filter>
260 </activity>
Vivek Sekharce2a4832014-03-26 13:26:53 -0700261 <!-- add or edit my navigation activity -->
262 <activity android:name=".mynavigation.AddMyNavigationPage"
263 android:label="@string/my_navigation_page_title"
264 android:configChanges="orientation|keyboardHidden"
265 android:windowSoftInputMode="stateHidden">
266 </activity>
Michael Kolb0382be22010-08-15 15:48:37 -0700267
The Android Open Source Project0c908882009-03-03 19:32:16 -0800268 <!-- Makes .BrowserActivity the search target for any activity in Browser -->
269 <meta-data android:name="android.app.default_searchable" android:value=".BrowserActivity" />
270
Bijan Amirzada41242f22014-03-21 12:12:18 -0700271 <receiver android:name=".OpenDownloadReceiver">
Leon Scrogginsfedc4932010-01-26 14:15:01 -0500272 <intent-filter>
273 <action android:name="android.intent.action.DOWNLOAD_NOTIFICATION_CLICKED"/>
Leon Scrogginsfedc4932010-01-26 14:15:01 -0500274 </intent-filter>
275 </receiver>
John Reckbafe58a2011-01-11 10:26:02 -0800276
277 <!-- For custom home pages (like most visited) -->
278 <provider
Bijan Amirzada41242f22014-03-21 12:12:18 -0700279 android:name=".homepages.HomeProvider"
Tarun Nainanief749cb2014-05-19 18:16:53 -0700280 android:authorities="com.android.swe.browser.home"
yanglv960bcd62013-10-23 16:40:25 +0800281 android:grantUriPermissions="true"
John Reckbafe58a2011-01-11 10:26:02 -0800282 android:readPermission="com.android.browser.permission.READ_HISTORY_BOOKMARKS"
283 android:exported="false" />
John Reck267b6af2011-01-19 10:15:47 -0800284
Bijan Amirzada41242f22014-03-21 12:12:18 -0700285 <receiver android:name=".AccountsChangedReceiver">
John Reck5a775372011-06-17 14:27:24 -0700286 <intent-filter>
287 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" />
288 </intent-filter>
289 </receiver>
290
Vivek Sekharce2a4832014-03-26 13:26:53 -0700291 <receiver android:name=".MessagesReceiver">
292 <intent-filter>
293 <action android:name="com.android.mms.transaction.MESSAGE_RECEIVED" />
294 </intent-filter>
295 </receiver>
296
Bijan Amirzada41242f22014-03-21 12:12:18 -0700297 <receiver android:name=".PreloadRequestReceiver"
Axesh R. Ajmera70a6ec72014-06-10 18:03:50 -0700298 android:permission="com.android.swe.browser.permission.PRELOAD" >
Michael Kolb14612442011-06-24 13:06:29 -0700299 <intent-filter>
300 <action android:name="android.intent.action.PRELOAD"/>
301 <data android:scheme="http" />
302 </intent-filter>
303 </receiver>
304
Bijan Amirzada41242f22014-03-21 12:12:18 -0700305 <provider android:name=".provider.SnapshotProvider"
Tarun Nainanief749cb2014-05-19 18:16:53 -0700306 android:authorities="com.android.swe.browser.snapshots"
John Reck8cc92352011-07-06 17:41:52 -0700307 android:exported="false" />
Vivek Sekharce2a4832014-03-26 13:26:53 -0700308 <provider
309 android:name=".provider.MyNavigationProvider"
Tarun Nainanief749cb2014-05-19 18:16:53 -0700310 android:authorities="com.android.swe.browser.mynavigation"
Axesh R. Ajmera2e241242014-05-19 15:53:38 -0700311 android:exported="false"
312 android:grantUriPermissions="true"/>
John Reck8cc92352011-07-06 17:41:52 -0700313
Bijan Amirzada9b1e9882014-02-26 17:15:46 -0800314 <service android:name="org.chromium.content.app.SandboxedProcessService0"
315 android:process=":sandboxed_process0"
316 android:permission="org.chromium.content_shell.permission.SANDBOX"
317 android:isolatedProcess="true"
318 android:exported="false" />
319 <service android:name="org.chromium.content.app.SandboxedProcessService1"
320 android:process=":sandboxed_process1"
321 android:permission="org.chromium.content_shell.permission.SANDBOX"
322 android:isolatedProcess="true"
323 android:exported="false" />
324 <service android:name="org.chromium.content.app.SandboxedProcessService2"
325 android:process=":sandboxed_process2"
326 android:permission="org.chromium.content_shell.permission.SANDBOX"
327 android:isolatedProcess="true"
328 android:exported="false" />
329 <service android:name="org.chromium.content.app.SandboxedProcessService3"
330 android:process=":sandboxed_process3"
331 android:permission="org.chromium.content_shell.permission.SANDBOX"
332 android:isolatedProcess="true"
333 android:exported="false" />
334 <service android:name="org.chromium.content.app.SandboxedProcessService4"
335 android:process=":sandboxed_process4"
336 android:permission="org.chromium.content_shell.permission.SANDBOX"
337 android:isolatedProcess="true"
338 android:exported="false" />
339 <service android:name="org.chromium.content.app.SandboxedProcessService5"
340 android:process=":sandboxed_process5"
341 android:permission="org.chromium.content_shell.permission.SANDBOX"
342 android:isolatedProcess="true"
343 android:exported="false" />
344 <service android:name="org.chromium.content.app.SandboxedProcessService6"
345 android:process=":sandboxed_process6"
346 android:permission="org.chromium.content_shell.permission.SANDBOX"
347 android:isolatedProcess="true"
348 android:exported="false" />
349 <service android:name="org.chromium.content.app.SandboxedProcessService7"
350 android:process=":sandboxed_process7"
351 android:permission="org.chromium.content_shell.permission.SANDBOX"
352 android:isolatedProcess="true"
353 android:exported="false" />
354 <service android:name="org.chromium.content.app.SandboxedProcessService8"
355 android:process=":sandboxed_process8"
356 android:permission="org.chromium.content_shell.permission.SANDBOX"
357 android:isolatedProcess="true"
358 android:exported="false" />
359 <service android:name="org.chromium.content.app.SandboxedProcessService9"
360 android:process=":sandboxed_process9"
361 android:permission="org.chromium.content_shell.permission.SANDBOX"
362 android:isolatedProcess="true"
363 android:exported="false" />
364 <service android:name="org.chromium.content.app.SandboxedProcessService10"
365 android:process=":sandboxed_process10"
366 android:permission="org.chromium.content_shell.permission.SANDBOX"
367 android:isolatedProcess="true"
368 android:exported="false" />
369 <service android:name="org.chromium.content.app.SandboxedProcessService11"
370 android:process=":sandboxed_process11"
371 android:permission="org.chromium.content_shell.permission.SANDBOX"
372 android:isolatedProcess="true"
373 android:exported="false" />
374 <service android:name="org.chromium.content.app.SandboxedProcessService12"
375 android:process=":sandboxed_process12"
376 android:permission="org.chromium.content_shell.permission.SANDBOX"
377 android:isolatedProcess="true"
378 android:exported="false" />
379 <service android:name="org.chromium.content.app.SandboxedProcessService13"
380 android:process=":sandboxed_process13"
381 android:permission="org.chromium.content_shell.permission.SANDBOX"
382 android:isolatedProcess="true"
383 android:exported="false" />
Tarun Nainani8eb00912014-07-17 12:28:32 -0700384 <service android:name="org.chromium.content.app.SandboxedProcessService14"
385 android:process=":sandboxed_process14"
386 android:permission="org.chromium.content_shell.permission.SANDBOX"
387 android:isolatedProcess="true"
388 android:exported="false" />
389 <service android:name="org.chromium.content.app.SandboxedProcessService15"
390 android:process=":sandboxed_process15"
391 android:permission="org.chromium.content_shell.permission.SANDBOX"
392 android:isolatedProcess="true"
393 android:exported="false" />
394 <service android:name="org.chromium.content.app.SandboxedProcessService16"
395 android:process=":sandboxed_process16"
396 android:permission="org.chromium.content_shell.permission.SANDBOX"
397 android:isolatedProcess="true"
398 android:exported="false" />
399 <service android:name="org.chromium.content.app.SandboxedProcessService17"
400 android:process=":sandboxed_process17"
401 android:permission="org.chromium.content_shell.permission.SANDBOX"
402 android:isolatedProcess="true"
403 android:exported="false" />
404 <service android:name="org.chromium.content.app.SandboxedProcessService18"
405 android:process=":sandboxed_process18"
406 android:permission="org.chromium.content_shell.permission.SANDBOX"
407 android:isolatedProcess="true"
408 android:exported="false" />
409 <service android:name="org.chromium.content.app.SandboxedProcessService19"
410 android:process=":sandboxed_process19"
411 android:permission="org.chromium.content_shell.permission.SANDBOX"
412 android:isolatedProcess="true"
413 android:exported="false" />
The Android Open Source Project0c908882009-03-03 19:32:16 -0800414 </application>
415
Vivek Sekhar0989b452014-08-01 12:30:35 -0700416 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="19" />
The Android Open Source Project0c908882009-03-03 19:32:16 -0800417
Bijan Amirzada9b1e9882014-02-26 17:15:46 -0800418 <uses-feature android:name="android.hardware.location.gps" android:required="false" />
419
Bijan Amirzada41242f22014-03-21 12:12:18 -0700420</manifest>
421