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 | 2ed4f50 | 2015-03-16 17:22:30 -0700 | [diff] [blame] | 18 | <application android:label="@string/application_name" |
| 19 | android:icon="@mipmap/ic_launcher_shortcut_browser_bookmark" > |
| 20 | |
| 21 | <provider android:name=".BookmarkProvider" |
Svetoslav | de0e388 | 2015-06-05 16:34:21 -0700 | [diff] [blame^] | 22 | android:authorities="com.android.browser;browser;com.android.chrome.browser" |
Paul Miller | 2ed4f50 | 2015-03-16 17:22:30 -0700 | [diff] [blame] | 23 | android:multiprocess="false" |
Svetoslav | de0e388 | 2015-06-05 16:34:21 -0700 | [diff] [blame^] | 24 | android:exported="true"> |
Paul Miller | 2ed4f50 | 2015-03-16 17:22:30 -0700 | [diff] [blame] | 25 | </provider> |
| 26 | |
| 27 | </application> |
| 28 | |
| 29 | </manifest> |
| 30 | |