1<?xml version="1.0" encoding="utf-8"?> 2<manifest 3 xmlns:android="http://schemas.android.com/apk/res/android" 4 package="com.google.snippet.uwb"> 5 6 <uses-permission android:name="android.permissions.UWB_PRIVILEGED" /> 7 <uses-permission android:name="android.permission.UWB_RANGING" /> 8 9 <application> 10 <!-- Add any classes that implement the Snippet interface as meta-data, whose 11 value is a comma-separated string, each section being the package path 12 of a snippet class --> 13 <meta-data 14 android:name="mobly-snippets" 15 android:value="com.google.snippet.uwb.UwbManagerSnippet" /> 16 </application> 17 <!-- Add an instrumentation tag so that the app can be launched through an 18 instrument command. The runner `com.google.android.mobly.snippet.SnippetRunner` 19 is derived from `AndroidJUnitRunner`, and is required to use the 20 Mobly Snippet Lib. --> 21 <instrumentation 22 android:name="com.google.android.mobly.snippet.SnippetRunner" 23 android:targetPackage="com.google.snippet.uwb" /> 24</manifest> 25