Paul Miller | 2ed4f50 | 2015-03-16 17:22:30 -0700 | [diff] [blame] | 1 | <!-- Copyright (C) 2015 The Android Open Source Project |
| 2 | |
| 3 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | you may not use this file except in compliance with the License. |
| 5 | You may obtain a copy of the License at |
| 6 | |
| 7 | http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | |
| 9 | Unless required by applicable law or agreed to in writing, software |
| 10 | distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | See the License for the specific language governing permissions and |
| 13 | limitations under the License. |
| 14 | --> |
| 15 | |
| 16 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.bookmarkprovider"> |
| 17 | |
Paul Miller | 52282cc | 2015-05-04 11:52:13 -0700 | [diff] [blame^] | 18 | <!-- Required for getAccountsByType, getAccounts --> |
Paul Miller | 2ed4f50 | 2015-03-16 17:22:30 -0700 | [diff] [blame] | 19 | <uses-permission android:name="android.permission.GET_ACCOUNTS" /> |
Paul Miller | 52282cc | 2015-05-04 11:52:13 -0700 | [diff] [blame^] | 20 | <!-- Required for getIsSyncable --> |
| 21 | <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" /> |
| 22 | <!-- Required for setIsSyncable, setSyncAutomatically --> |
| 23 | <uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" /> |
Paul Miller | 2ed4f50 | 2015-03-16 17:22:30 -0700 | [diff] [blame] | 24 | |
| 25 | <application android:label="@string/application_name" |
| 26 | android:icon="@mipmap/ic_launcher_shortcut_browser_bookmark" > |
| 27 | |
| 28 | <provider android:name=".BookmarkProvider" |
| 29 | android:authorities="com.android.browser;browser" |
| 30 | android:multiprocess="false" |
| 31 | android:exported="true" |
| 32 | android:readPermission="com.android.browser.permission.READ_HISTORY_BOOKMARKS" |
| 33 | android:writePermission="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS"> |
| 34 | <path-permission android:path="/bookmarks/search_suggest_query" |
| 35 | android:readPermission="android.permission.GLOBAL_SEARCH" /> |
| 36 | </provider> |
| 37 | |
| 38 | </application> |
| 39 | |
| 40 | </manifest> |
| 41 | |