Files
rk35xx-android14/packages/modules/Uwb/androidx_backend/AndroidManifest.xml
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

22 lines
729 B
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="androidx.core.uwb.backend">
<uses-permission android:name="android.permission.UWB_PRIVILEGED"/>
<uses-permission android:name="android.permission.UWB_RANGING"/>
<application
android:persistent="true"
android:directBootAware="true"
android:defaultToDeviceProtectedStorage="true">
<service android:name=".impl.UwbService"
android:exported="true"
android:process=":remote">
<intent-filter>
<action android:name="androidx.core.uwb.backend.service"></action>
</intent-filter>
</service>
</application>
</manifest>