blob: bd61e9c4fd23a94e77c3f889d1a42006a0259014 [file] [log] [blame]
Paul Miller2ed4f502015-03-16 17:22:30 -07001<!-- 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 Miller2ed4f502015-03-16 17:22:30 -070018 <application android:label="@string/application_name"
19 android:icon="@mipmap/ic_launcher_shortcut_browser_bookmark" >
20
21 <provider android:name=".BookmarkProvider"
Paul Millercb9cab22015-07-29 10:59:53 -070022 android:authorities="com.android.browser;browser"
Paul Miller2ed4f502015-03-16 17:22:30 -070023 android:multiprocess="false"
Svetoslavde0e3882015-06-05 16:34:21 -070024 android:exported="true">
Paul Miller2ed4f502015-03-16 17:22:30 -070025 </provider>
26
27 </application>
28
29</manifest>
30