blob: 1d62f04c94b22d1f2b2e539332ba67c2f81f5efd [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2022 The Android Open Source Project
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="android.nearby.fastpair.seeker.dataprovider">
<uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" />
<application>
<!-- Fast Pair Data Provider Service which acts as an "overlay" to the
framework Fast Pair Data Provider. Only supported on Android T and later.
All overlays are protected from non-system access via WRITE_SECURE_SETTINGS.
Must stay in the same process as Nearby Discovery Service.
-->
<service
android:name=".FastPairTestDataProviderService"
android:exported="true"
android:permission="android.permission.WRITE_SECURE_SETTINGS"
android:visibleToInstantApps="true">
<intent-filter>
<action android:name="android.nearby.action.FAST_PAIR_DATA_PROVIDER" />
</intent-filter>
<meta-data
android:name="instantapps.clients.allowed"
android:value="true" />
<meta-data
android:name="serviceVersion"
android:value="1" />
</service>
</application>
</manifest>