blob: 07833f4920dc0d432a719176f76b2b4036b39158 [file] [log] [blame]
Nick Pelly48e8ca12009-09-10 19:14:41 -07001<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" />
Nick Pelly48e8ca12009-09-10 19:14:41 -070016 <action android:name="android.bluetooth.device.action.CLASS_CHANGED" />
17 <action android:name="android.bluetooth.device.action.ACL_CONNECTED" />
18 <action android:name="android.bluetooth.device.action.ACL_DISCONNECT_REQUESTED" />
19 <action android:name="android.bluetooth.device.action.ACL_DISCONNECTED" />
20 <action android:name="android.bluetooth.device.action.NAME_CHANGED" />
21 <action android:name="android.bluetooth.device.action.BOND_STATE_CHANGED" />
22 <action android:name="android.bluetooth.device.action.NAME_FAILED" />
23 <action android:name="android.bluetooth.device.action.PAIRING_REQUEST" />
24 <action android:name="android.bluetooth.device.action.PAIRING_CANCEL" />
Jaikumar Ganesh32de5902009-09-18 16:08:18 -070025 <action android:name="android.bluetooth.device.action.UUID" />
Nick Pelly48e8ca12009-09-10 19:14:41 -070026
27 <action android:name="android.bluetooth.headset.action.STATE_CHANGED" />
28 <action android:name="android.bluetooth.headset.action.AUDIO_STATE_CHANGED" />
29
Nick Pelly48e8ca12009-09-10 19:14:41 -070030 <action android:name="android.bluetooth.devicepicker.action.LAUNCH" />
31 <action android:name="android.bluetooth.devicepicker.action.DEVICE_SELECTED" />
32 </intent-filter>
33 </receiver>
34 </application>
35</manifest>