1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3    xmlns:tools="http://schemas.android.com/tools"
4    package="com.android.bluetooth.channelsoundingtestapp">
5    <uses-feature android:name="android.hardware.bluetooth" android:required="true"/>
6
7    <uses-permission android:name="android.permission.BLUETOOTH_ADVERTISE" />
8    <uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
9    <uses-permission android:name="android.permission.BLUETOOTH_PRIVILEGED"/>
10
11  <application
12      android:allowBackup="true"
13      android:dataExtractionRules="@xml/data_extraction_rules"
14      android:fullBackupContent="@xml/backup_rules"
15      android:icon="@mipmap/ic_launcher"
16      android:label="@string/app_name"
17      android:roundIcon="@mipmap/ic_launcher_round"
18      android:supportsRtl="true"
19      android:theme="@style/Theme.ChannelSoundingTestApp"
20      tools:targetApi="31">
21    <activity
22        android:name=".MainActivity"
23        android:exported="true"
24        android:theme="@style/Theme.ChannelSoundingTestApp">
25      <intent-filter>
26        <action android:name="android.intent.action.MAIN" />
27
28        <category android:name="android.intent.category.LAUNCHER" />
29      </intent-filter>
30    </activity>
31  </application>
32
33</manifest>
34