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.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" /> 25 <action android:name="android.bluetooth.device.action.UUID" /> 26 27 <action android:name="android.bluetooth.headset.action.STATE_CHANGED" /> 28 <action android:name="android.bluetooth.headset.action.AUDIO_STATE_CHANGED" /> 29 30 <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> 36