1<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2        package="com.android.bluetoothdebug" >
3    <uses-permission android:name="android.permission.BLUETOOTH" />
4    <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
5
6    <application android:label="Bluetooth Debug" >
7        <receiver android:name="DebugReceiver">
8            <intent-filter>
9                <action android:name="android.bluetooth.adapter.action.STATE_CHANGED" />
10                <action android:name="android.bluetooth.adapter.action.SCAN_MODE_CHANGED" />
11                <action android:name="android.bluetooth.adapter.action.DISCOVERY_STARTED" />
12                <action android:name="android.bluetooth.adapter.action.DISCOVERY_FINISHED" />
13                <action android:name="android.bluetooth.adapter.action.LOCAL_NAME_CHANGED" />
14
15                <action android:name="android.bluetooth.device.action.FOUND" />
16                <action android:name="android.bluetooth.device.action.DISAPPEARED" />
17                <action android:name="android.bluetooth.device.action.CLASS_CHANGED" />
18                <action android:name="android.bluetooth.device.action.ACL_CONNECTED" />
19                <action android:name="android.bluetooth.device.action.ACL_DISCONNECT_REQUESTED" />
20                <action android:name="android.bluetooth.device.action.ACL_DISCONNECTED" />
21                <action android:name="android.bluetooth.device.action.NAME_CHANGED" />
22                <action android:name="android.bluetooth.device.action.BOND_STATE_CHANGED" />
23                <action android:name="android.bluetooth.device.action.NAME_FAILED" />
24                <action android:name="android.bluetooth.device.action.PAIRING_REQUEST" />
25                <action android:name="android.bluetooth.device.action.PAIRING_CANCEL" />
26                <action android:name="android.bluetooth.device.action.UUID" />
27
28                <action android:name="android.bluetooth.headset.action.STATE_CHANGED" />
29                <action android:name="android.bluetooth.headset.action.AUDIO_STATE_CHANGED" />
30
31                <action android:name="android.bluetooth.a2dp.action.SINK_STATE_CHANGED" />
32
33                <action android:name="android.bluetooth.devicepicker.action.LAUNCH" />
34                <action android:name="android.bluetooth.devicepicker.action.DEVICE_SELECTED" />
35            </intent-filter>
36        </receiver>
37    </application>
38</manifest>
39