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