• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<manifest
3    xmlns:android="http://schemas.android.com/apk/res/android"
4    package="androidx.core.uwb.backend">
5
6  <uses-permission android:name="android.permission.UWB_PRIVILEGED"/>
7  <uses-permission android:name="android.permission.UWB_RANGING"/>
8
9  <application
10         android:persistent="true"
11         android:directBootAware="true"
12         android:defaultToDeviceProtectedStorage="true">
13    <service android:name=".impl.UwbService"
14            android:exported="true"
15            android:process=":remote">
16        <intent-filter>
17          <action android:name="androidx.core.uwb.backend.service"></action>
18        </intent-filter>
19    </service>
20  </application>
21</manifest>
22