<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2015 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="org.chromium.example.partnercustomizations">
    <uses-sdk android:minSdkVersion="23" android:targetSdkVersion="23" />
    <application>
        <!-- Provider for partner bookmarks. android:authorities must not be changed. -->
        <provider android:name="PartnerBookmarksProviderExample"
            android:authorities="com.android.partnerbookmarks"
            android:exported="true" />

        <!-- Provider for other partner customizations. android:authorities must not be changed. -->
        <provider android:name="PartnerBrowserCustomizationsProviderExample"
            android:authorities="com.android.partnerbrowsercustomizations"
            android:exported="true" />
    </application>
</manifest>
