Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 1 | <!-- |
| 2 | /* |
| 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 | */ |
| 17 | --> |
| 18 | |
| 19 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.browser"> |
| 20 | |
| 21 | <original-package android:name="com.android.browser" /> |
| 22 | |
| 23 | <permission android:name="com.android.browser.permission.PRELOAD" |
| 24 | android:label="@string/permission_preload_label" |
| 25 | android:protectionLevel="signatureOrSystem" /> |
| 26 | <permission android:name="com.android.browser.permission.INITIALIZE_DATABASE" |
| 27 | android:protectionLevel="signatureOrSystem" /> |
Tarun Nainani | a27cc65 | 2014-12-10 16:51:21 -0800 | [diff] [blame] | 28 | <permission android:name="com.android.browser.permission.SANDBOX" |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 29 | android:protectionLevel="signatureOrSystem" /> |
| 30 | |
| 31 | <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"/> |
Vivek Sekhar | ed791da | 2015-02-22 12:39:05 -0800 | [diff] [blame] | 36 | <uses-permission android:name="android.permission.CAMERA" /> |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 37 | <uses-permission android:name="android.permission.INTERNET" /> |
| 38 | <uses-permission android:name="android.permission.NFC" /> |
| 39 | <uses-permission android:name="android.permission.SEND_DOWNLOAD_COMPLETED_INTENTS" /> |
| 40 | <uses-permission android:name="android.permission.SET_WALLPAPER" /> |
| 41 | <uses-permission android:name="android.permission.WAKE_LOCK"/> |
| 42 | <uses-permission android:name="android.permission.WRITE_MEDIA_STORAGE" /> |
| 43 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
| 44 | <uses-permission android:name="android.permission.WRITE_SETTINGS" /> |
| 45 | <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" /> |
| 46 | <uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" /> |
| 47 | <uses-permission android:name="android.permission.GET_ACCOUNTS"/> |
| 48 | <uses-permission android:name="android.permission.READ_PROFILE" /> |
| 49 | <uses-permission android:name="android.permission.READ_CONTACTS" /> |
| 50 | <uses-permission android:name="com.android.browser.permission.READ_HISTORY_BOOKMARKS"/> |
| 51 | <uses-permission android:name="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS"/> |
| 52 | <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"/> |
| 53 | <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"/> |
Tarun Nainani | 8eb0091 | 2014-07-17 12:28:32 -0700 | [diff] [blame] | 59 | <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" /> |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 60 | |
| 61 | <application android:name="Browser" |
| 62 | android:label="@string/application_name" |
| 63 | android:icon="@mipmap/ic_launcher_browser" |
| 64 | android:backupAgent=".BrowserBackupAgent" |
| 65 | android:hardwareAccelerated="true" |
Enrico Ros | d6efa97 | 2014-12-02 19:49:59 -0800 | [diff] [blame] | 66 | android:taskAffinity="android.task.browser" |
| 67 | android:theme="@style/BrowserBase" > |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 68 | |
| 69 | <uses-library android:name="com.qrd.useragent" |
| 70 | android:required="false" /> |
| 71 | |
| 72 | <provider android:name=".provider.BrowserProvider2" |
| 73 | android:authorities="com.android.browser;browser" |
| 74 | android:multiprocess="false" |
| 75 | android:exported="true" |
| 76 | android:readPermission="com.android.browser.permission.READ_HISTORY_BOOKMARKS" |
| 77 | android:writePermission="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS"> |
| 78 | <path-permission android:path="/bookmarks/search_suggest_query" |
| 79 | android:readPermission="android.permission.GLOBAL_SEARCH" /> |
| 80 | <path-permission android:path="/homepage" |
| 81 | android:readPermission="com.android.browser.permission.READ_HOMEPAGE" |
| 82 | android:writePermission="com.android.browser.permission.WRITE_HOMEPAGE" /> |
| 83 | </provider> |
| 84 | <activity android:name="BrowserActivity" |
| 85 | android:label="@string/application_name" |
| 86 | android:launchMode="singleTask" |
| 87 | android:alwaysRetainTaskState="true" |
| 88 | android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" |
| 89 | android:theme="@style/BrowserTheme" |
| 90 | android:windowSoftInputMode="adjustResize" > |
| 91 | <intent-filter> |
| 92 | <action android:name="android.speech.action.VOICE_SEARCH_RESULTS" /> |
| 93 | <category android:name="android.intent.category.DEFAULT" /> |
| 94 | </intent-filter> |
| 95 | <!-- For these schemes were not particular MIME type has been |
| 96 | supplied, we are a good candidate. --> |
| 97 | <intent-filter> |
| 98 | <action android:name="android.intent.action.VIEW" /> |
| 99 | <category android:name="android.intent.category.DEFAULT" /> |
| 100 | <category android:name="android.intent.category.BROWSABLE" /> |
| 101 | <data android:scheme="http" /> |
| 102 | <data android:scheme="https" /> |
| 103 | <data android:scheme="about" /> |
| 104 | <data android:scheme="javascript" /> |
| 105 | </intent-filter> |
| 106 | <!-- For these schemes where any of these particular MIME types |
| 107 | have been supplied, we are a good candidate. --> |
| 108 | <intent-filter> |
| 109 | <action android:name="android.intent.action.VIEW" /> |
| 110 | <category android:name="android.intent.category.BROWSABLE" /> |
| 111 | <category android:name="android.intent.category.DEFAULT" /> |
| 112 | <data android:scheme="http" /> |
| 113 | <data android:scheme="https" /> |
| 114 | <data android:scheme="inline" /> |
| 115 | <data android:mimeType="text/html"/> |
| 116 | <data android:mimeType="text/plain"/> |
| 117 | <data android:mimeType="application/xhtml+xml"/> |
| 118 | <data android:mimeType="application/vnd.wap.xhtml+xml"/> |
| 119 | </intent-filter> |
| 120 | <!-- For viewing saved web archives. --> |
| 121 | <intent-filter> |
| 122 | <action android:name="android.intent.action.VIEW" /> |
| 123 | <category android:name="android.intent.category.BROWSABLE" /> |
| 124 | <category android:name="android.intent.category.DEFAULT" /> |
| 125 | <data android:scheme="http" /> |
| 126 | <data android:scheme="https" /> |
| 127 | <data android:scheme="file" /> |
| 128 | <data android:mimeType="application/x-webarchive-xml"/> |
| 129 | </intent-filter> |
| 130 | <!-- Accept inbound NFC URLs at a low priority --> |
| 131 | <intent-filter android:priority="-101"> |
| 132 | <action android:name="android.nfc.action.NDEF_DISCOVERED" /> |
| 133 | <category android:name="android.intent.category.DEFAULT" /> |
| 134 | <data android:scheme="http" /> |
| 135 | <data android:scheme="https" /> |
| 136 | </intent-filter> |
| 137 | <!-- We are also the main entry point of the browser. --> |
| 138 | <intent-filter> |
| 139 | <action android:name="android.intent.action.MAIN" /> |
| 140 | <category android:name="android.intent.category.DEFAULT" /> |
| 141 | <category android:name="android.intent.category.LAUNCHER" /> |
| 142 | <category android:name="android.intent.category.BROWSABLE" /> |
| 143 | <category android:name="android.intent.category.APP_BROWSER" /> |
| 144 | </intent-filter> |
| 145 | <!-- The maps app is a much better experience, so it's not |
| 146 | worth having this at all... especially for a demo! |
| 147 | <intent-filter android:label="Map In Browser"> |
| 148 | <action android:name="android.intent.action.VIEW" /> |
| 149 | <category android:name="android.intent.category.DEFAULT" /> |
| 150 | <data android:mimeType="vnd.android.cursor.item/postal-address" /> |
| 151 | </intent-filter> |
| 152 | --> |
| 153 | <intent-filter> |
| 154 | <action android:name="android.intent.action.WEB_SEARCH" /> |
| 155 | <category android:name="android.intent.category.DEFAULT" /> |
| 156 | <category android:name="android.intent.category.BROWSABLE" /> |
| 157 | <data android:scheme="" /> |
| 158 | <data android:scheme="http" /> |
| 159 | <data android:scheme="https" /> |
| 160 | </intent-filter> |
| 161 | <intent-filter> |
| 162 | <action android:name="android.intent.action.MEDIA_SEARCH" /> |
| 163 | <category android:name="android.intent.category.DEFAULT" /> |
| 164 | </intent-filter> |
| 165 | <intent-filter> |
| 166 | <action android:name="android.intent.action.SEARCH" /> |
| 167 | <category android:name="android.intent.category.DEFAULT" /> |
| 168 | </intent-filter> |
| 169 | <meta-data android:name="android.app.searchable" |
| 170 | android:resource="@xml/searchable" /> |
| 171 | </activity> |
| 172 | |
| 173 | <activity android:name="ShortcutActivity" |
| 174 | android:theme="@style/ShortcutTheme" |
| 175 | android:label="@string/shortcut_bookmark" |
| 176 | android:icon="@mipmap/ic_launcher_shortcut_browser_bookmark"> |
| 177 | <intent-filter> |
| 178 | <action android:name="android.intent.action.CREATE_SHORTCUT" /> |
| 179 | <category android:name="android.intent.category.DEFAULT" /> |
| 180 | </intent-filter> |
| 181 | </activity> |
| 182 | |
Enrico Ros | d6efa97 | 2014-12-02 19:49:59 -0800 | [diff] [blame] | 183 | <activity android:name="BrowserPreferencesPage" android:label="@string/menu_preferences" |
| 184 | android:parentActivityName=".BrowserActivity" |
| 185 | android:theme="@style/SettingsTheme"> |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 186 | <intent-filter> |
| 187 | <action android:name="android.intent.action.MANAGE_NETWORK_USAGE" /> |
| 188 | <category android:name="android.intent.category.DEFAULT" /> |
| 189 | </intent-filter> |
| 190 | </activity> |
| 191 | |
| 192 | <activity android:name="BookmarkSearch" |
| 193 | android:label="@string/bookmarks_search" |
| 194 | android:stateNotNeeded="true" |
| 195 | android:theme="@android:style/Theme.NoDisplay" |
| 196 | android:excludeFromRecents="true"> |
| 197 | <intent-filter> |
| 198 | <action android:name="android.intent.action.SEARCH" /> |
| 199 | <category android:name="android.intent.category.DEFAULT" /> |
| 200 | </intent-filter> |
| 201 | <meta-data android:name="android.app.searchable" |
| 202 | android:resource="@xml/bookmarks_searchable" /> |
| 203 | </activity> |
| 204 | |
| 205 | <activity android:name="AddBookmarkPage" android:label="@string/bookmarks_add_page" |
| 206 | android:theme="@style/DialogWhenLarge" |
| 207 | android:configChanges="orientation|keyboardHidden|screenSize" |
| 208 | android:windowSoftInputMode="adjustResize"> |
| 209 | <intent-filter> |
| 210 | <action android:name="android.intent.action.INSERT" /> |
| 211 | <category android:name="android.intent.category.DEFAULT" /> |
| 212 | <data android:mimeType="vnd.android.cursor.dir/bookmark"/> |
| 213 | </intent-filter> |
| 214 | </activity> |
| 215 | |
| 216 | <activity android:name="DownloadSettings" android:label="@string/download_settings_title" |
| 217 | android:theme="@style/DialogWhenLarge" |
| 218 | android:launchMode="singleTask" |
| 219 | android:configChanges="orientation|keyboardHidden|screenSize" |
| 220 | android:windowSoftInputMode="adjustResize"> |
| 221 | <intent-filter> |
| 222 | <action android:name="android.intent.action.BROWSERDOWNLOAD" /> |
| 223 | <category android:name="android.intent.category.DEFAULT" /> |
| 224 | </intent-filter> |
| 225 | </activity> |
| 226 | |
| 227 | <!-- For creating new folder in bookmarks page --> |
| 228 | <activity android:name="AddBookmarkFolder" android:label="@string/save_bookmark_folder" |
| 229 | android:theme="@style/DialogWhenLarge" |
| 230 | android:configChanges="orientation|keyboardHidden|screenSize"> |
| 231 | <intent-filter> |
| 232 | <category android:name="android.intent.category.DEFAULT" /> |
| 233 | <data android:mimeType="vnd.android.cursor.dir/bookmark"/> |
| 234 | </intent-filter> |
| 235 | </activity> |
| 236 | |
| 237 | <activity android:name="ComboViewActivity"> |
| 238 | </activity> |
| 239 | |
| 240 | <!-- Bookmark thumbnail homescreen widget --> |
| 241 | <receiver |
| 242 | android:name=".widget.BookmarkThumbnailWidgetProvider" |
| 243 | android:label="@string/bookmarks"> |
| 244 | <intent-filter> |
| 245 | <action |
| 246 | android:name="android.appwidget.action.APPWIDGET_UPDATE" /> |
| 247 | <action |
| 248 | android:name="com.android.browser.BOOKMARK_APPWIDGET_UPDATE" /> |
| 249 | </intent-filter> |
| 250 | <meta-data |
| 251 | android:name="android.appwidget.provider" |
| 252 | android:resource="@xml/bookmarkthumbnailwidget_info" /> |
| 253 | </receiver> |
| 254 | <service |
| 255 | android:name=".widget.BookmarkThumbnailWidgetService" |
| 256 | android:permission="android.permission.BIND_REMOTEVIEWS" |
| 257 | android:exported="false" /> |
| 258 | <receiver |
| 259 | android:name=".widget.BookmarkWidgetProxy" |
| 260 | android:exported="false" /> |
| 261 | <activity android:name=".widget.BookmarkWidgetConfigure" |
Enrico Ros | d6efa97 | 2014-12-02 19:49:59 -0800 | [diff] [blame] | 262 | android:theme="@style/DialogWhenLarge"> |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 263 | <intent-filter> |
| 264 | <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE"/> |
| 265 | </intent-filter> |
| 266 | </activity> |
| 267 | <!-- add or edit my navigation activity --> |
| 268 | <activity android:name=".mynavigation.AddMyNavigationPage" |
| 269 | android:label="@string/my_navigation_page_title" |
| 270 | android:configChanges="orientation|keyboardHidden" |
| 271 | android:windowSoftInputMode="stateHidden"> |
| 272 | </activity> |
| 273 | |
| 274 | <!-- Makes .BrowserActivity the search target for any activity in Browser --> |
| 275 | <meta-data android:name="android.app.default_searchable" android:value=".BrowserActivity" /> |
| 276 | |
| 277 | <receiver android:name=".OpenDownloadReceiver"> |
| 278 | <intent-filter> |
| 279 | <action android:name="android.intent.action.DOWNLOAD_NOTIFICATION_CLICKED"/> |
| 280 | </intent-filter> |
| 281 | </receiver> |
| 282 | |
| 283 | <!-- For custom home pages (like most visited) --> |
| 284 | <provider |
| 285 | android:name=".homepages.HomeProvider" |
| 286 | android:authorities="com.android.browser.home" |
| 287 | android:grantUriPermissions="true" |
| 288 | android:readPermission="com.android.browser.permission.READ_HISTORY_BOOKMARKS" |
| 289 | android:exported="false" /> |
| 290 | |
| 291 | <receiver android:name=".AccountsChangedReceiver"> |
| 292 | <intent-filter> |
| 293 | <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" /> |
| 294 | </intent-filter> |
| 295 | </receiver> |
| 296 | |
| 297 | <receiver android:name=".MessagesReceiver"> |
| 298 | <intent-filter> |
| 299 | <action android:name="com.android.mms.transaction.MESSAGE_RECEIVED" /> |
| 300 | </intent-filter> |
| 301 | </receiver> |
| 302 | |
| 303 | <receiver android:name=".PreloadRequestReceiver" |
| 304 | android:permission="com.android.browser.permission.PRELOAD" > |
| 305 | <intent-filter> |
| 306 | <action android:name="android.intent.action.PRELOAD"/> |
| 307 | <data android:scheme="http" /> |
| 308 | </intent-filter> |
| 309 | </receiver> |
| 310 | |
| 311 | <provider android:name=".provider.SnapshotProvider" |
| 312 | android:authorities="com.android.browser.snapshots" |
| 313 | android:exported="false" /> |
| 314 | <provider |
| 315 | android:name=".provider.MyNavigationProvider" |
| 316 | android:authorities="com.android.browser.mynavigation" |
Axesh R. Ajmera | 2e24124 | 2014-05-19 15:53:38 -0700 | [diff] [blame] | 317 | android:exported="false" |
| 318 | android:grantUriPermissions="true"/> |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 319 | |
Vivek Sekhar | ed791da | 2015-02-22 12:39:05 -0800 | [diff] [blame] | 320 | |
| 321 | <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SERVICES" |
| 322 | android:value="3"/> |
| 323 | |
| 324 | <service android:name="org.chromium.content.app.PrivilegedProcessService0" |
| 325 | android:process=":privileged_process0" |
| 326 | android:isolatedProcess="false" |
| 327 | android:exported="false" /> |
| 328 | |
| 329 | <service android:name="org.chromium.content.app.PrivilegedProcessService1" |
| 330 | android:process=":privileged_process1" |
| 331 | android:isolatedProcess="false" |
| 332 | android:exported="false" /> |
| 333 | |
| 334 | <service android:name="org.chromium.content.app.PrivilegedProcessService2" |
| 335 | android:process=":privileged_process2" |
| 336 | android:isolatedProcess="false" |
| 337 | android:exported="false" /> |
| 338 | |
| 339 | |
| 340 | <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERVICES" |
| 341 | android:value="20"/> |
| 342 | |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 343 | <service android:name="org.chromium.content.app.SandboxedProcessService0" |
| 344 | android:process=":sandboxed_process0" |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 345 | android:isolatedProcess="true" |
| 346 | android:exported="false" /> |
Vivek Sekhar | ed791da | 2015-02-22 12:39:05 -0800 | [diff] [blame] | 347 | |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 348 | <service android:name="org.chromium.content.app.SandboxedProcessService1" |
| 349 | android:process=":sandboxed_process1" |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 350 | android:isolatedProcess="true" |
| 351 | android:exported="false" /> |
Vivek Sekhar | ed791da | 2015-02-22 12:39:05 -0800 | [diff] [blame] | 352 | |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 353 | <service android:name="org.chromium.content.app.SandboxedProcessService2" |
| 354 | android:process=":sandboxed_process2" |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 355 | android:isolatedProcess="true" |
| 356 | android:exported="false" /> |
Vivek Sekhar | ed791da | 2015-02-22 12:39:05 -0800 | [diff] [blame] | 357 | |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 358 | <service android:name="org.chromium.content.app.SandboxedProcessService3" |
| 359 | android:process=":sandboxed_process3" |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 360 | android:isolatedProcess="true" |
| 361 | android:exported="false" /> |
Vivek Sekhar | ed791da | 2015-02-22 12:39:05 -0800 | [diff] [blame] | 362 | |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 363 | <service android:name="org.chromium.content.app.SandboxedProcessService4" |
| 364 | android:process=":sandboxed_process4" |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 365 | android:isolatedProcess="true" |
| 366 | android:exported="false" /> |
Vivek Sekhar | ed791da | 2015-02-22 12:39:05 -0800 | [diff] [blame] | 367 | |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 368 | <service android:name="org.chromium.content.app.SandboxedProcessService5" |
| 369 | android:process=":sandboxed_process5" |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 370 | android:isolatedProcess="true" |
| 371 | android:exported="false" /> |
Vivek Sekhar | ed791da | 2015-02-22 12:39:05 -0800 | [diff] [blame] | 372 | |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 373 | <service android:name="org.chromium.content.app.SandboxedProcessService6" |
| 374 | android:process=":sandboxed_process6" |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 375 | android:isolatedProcess="true" |
| 376 | android:exported="false" /> |
Vivek Sekhar | ed791da | 2015-02-22 12:39:05 -0800 | [diff] [blame] | 377 | |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 378 | <service android:name="org.chromium.content.app.SandboxedProcessService7" |
| 379 | android:process=":sandboxed_process7" |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 380 | android:isolatedProcess="true" |
| 381 | android:exported="false" /> |
Vivek Sekhar | ed791da | 2015-02-22 12:39:05 -0800 | [diff] [blame] | 382 | |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 383 | <service android:name="org.chromium.content.app.SandboxedProcessService8" |
| 384 | android:process=":sandboxed_process8" |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 385 | android:isolatedProcess="true" |
| 386 | android:exported="false" /> |
Vivek Sekhar | ed791da | 2015-02-22 12:39:05 -0800 | [diff] [blame] | 387 | |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 388 | <service android:name="org.chromium.content.app.SandboxedProcessService9" |
| 389 | android:process=":sandboxed_process9" |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 390 | android:isolatedProcess="true" |
| 391 | android:exported="false" /> |
Vivek Sekhar | ed791da | 2015-02-22 12:39:05 -0800 | [diff] [blame] | 392 | |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 393 | <service android:name="org.chromium.content.app.SandboxedProcessService10" |
| 394 | android:process=":sandboxed_process10" |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 395 | android:isolatedProcess="true" |
| 396 | android:exported="false" /> |
Vivek Sekhar | ed791da | 2015-02-22 12:39:05 -0800 | [diff] [blame] | 397 | |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 398 | <service android:name="org.chromium.content.app.SandboxedProcessService11" |
| 399 | android:process=":sandboxed_process11" |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 400 | android:isolatedProcess="true" |
| 401 | android:exported="false" /> |
Vivek Sekhar | ed791da | 2015-02-22 12:39:05 -0800 | [diff] [blame] | 402 | |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 403 | <service android:name="org.chromium.content.app.SandboxedProcessService12" |
| 404 | android:process=":sandboxed_process12" |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 405 | android:isolatedProcess="true" |
| 406 | android:exported="false" /> |
Vivek Sekhar | ed791da | 2015-02-22 12:39:05 -0800 | [diff] [blame] | 407 | |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 408 | <service android:name="org.chromium.content.app.SandboxedProcessService13" |
| 409 | android:process=":sandboxed_process13" |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 410 | android:isolatedProcess="true" |
| 411 | android:exported="false" /> |
Vivek Sekhar | ed791da | 2015-02-22 12:39:05 -0800 | [diff] [blame] | 412 | |
Tarun Nainani | 8eb0091 | 2014-07-17 12:28:32 -0700 | [diff] [blame] | 413 | <service android:name="org.chromium.content.app.SandboxedProcessService14" |
| 414 | android:process=":sandboxed_process14" |
Tarun Nainani | 8eb0091 | 2014-07-17 12:28:32 -0700 | [diff] [blame] | 415 | android:isolatedProcess="true" |
| 416 | android:exported="false" /> |
Vivek Sekhar | ed791da | 2015-02-22 12:39:05 -0800 | [diff] [blame] | 417 | |
Tarun Nainani | 8eb0091 | 2014-07-17 12:28:32 -0700 | [diff] [blame] | 418 | <service android:name="org.chromium.content.app.SandboxedProcessService15" |
| 419 | android:process=":sandboxed_process15" |
Tarun Nainani | 8eb0091 | 2014-07-17 12:28:32 -0700 | [diff] [blame] | 420 | android:isolatedProcess="true" |
| 421 | android:exported="false" /> |
Vivek Sekhar | ed791da | 2015-02-22 12:39:05 -0800 | [diff] [blame] | 422 | |
Tarun Nainani | 8eb0091 | 2014-07-17 12:28:32 -0700 | [diff] [blame] | 423 | <service android:name="org.chromium.content.app.SandboxedProcessService16" |
| 424 | android:process=":sandboxed_process16" |
Tarun Nainani | 8eb0091 | 2014-07-17 12:28:32 -0700 | [diff] [blame] | 425 | android:isolatedProcess="true" |
| 426 | android:exported="false" /> |
Vivek Sekhar | ed791da | 2015-02-22 12:39:05 -0800 | [diff] [blame] | 427 | |
Tarun Nainani | 8eb0091 | 2014-07-17 12:28:32 -0700 | [diff] [blame] | 428 | <service android:name="org.chromium.content.app.SandboxedProcessService17" |
| 429 | android:process=":sandboxed_process17" |
Tarun Nainani | 8eb0091 | 2014-07-17 12:28:32 -0700 | [diff] [blame] | 430 | android:isolatedProcess="true" |
| 431 | android:exported="false" /> |
Vivek Sekhar | ed791da | 2015-02-22 12:39:05 -0800 | [diff] [blame] | 432 | |
Tarun Nainani | 8eb0091 | 2014-07-17 12:28:32 -0700 | [diff] [blame] | 433 | <service android:name="org.chromium.content.app.SandboxedProcessService18" |
| 434 | android:process=":sandboxed_process18" |
Tarun Nainani | 8eb0091 | 2014-07-17 12:28:32 -0700 | [diff] [blame] | 435 | android:isolatedProcess="true" |
| 436 | android:exported="false" /> |
Vivek Sekhar | ed791da | 2015-02-22 12:39:05 -0800 | [diff] [blame] | 437 | |
Tarun Nainani | 8eb0091 | 2014-07-17 12:28:32 -0700 | [diff] [blame] | 438 | <service android:name="org.chromium.content.app.SandboxedProcessService19" |
| 439 | android:process=":sandboxed_process19" |
Tarun Nainani | 8eb0091 | 2014-07-17 12:28:32 -0700 | [diff] [blame] | 440 | android:isolatedProcess="true" |
| 441 | android:exported="false" /> |
Vivek Sekhar | ed791da | 2015-02-22 12:39:05 -0800 | [diff] [blame] | 442 | |
| 443 | <!-- Provider for FileProvider. --> |
| 444 | <provider android:name="android.support.v4.content.FileProvider" |
| 445 | android:authorities="com.android.browser.FileProvider" |
| 446 | android:exported="false" |
| 447 | android:grantUriPermissions="true"> |
| 448 | <meta-data android:name="android.support.FILE_PROVIDER_PATHS" |
| 449 | android:resource="@xml/file_paths" /> |
| 450 | </provider> |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 451 | </application> |
| 452 | |
Vivek Sekhar | 0989b45 | 2014-08-01 12:30:35 -0700 | [diff] [blame] | 453 | <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="19" /> |
Tarun Nainani | ef749cb | 2014-05-19 18:16:53 -0700 | [diff] [blame] | 454 | |
| 455 | <uses-feature android:name="android.hardware.location.gps" android:required="false" /> |
| 456 | |
| 457 | </manifest> |
| 458 | |