You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
2.2 KiB
36 lines
2.2 KiB
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.android.bluetoothdebug" >
|
|
<uses-permission android:name="android.permission.BLUETOOTH" />
|
|
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
|
|
|
|
<application android:label="Bluetooth Debug" >
|
|
<receiver android:name="DebugReceiver">
|
|
<intent-filter>
|
|
<action android:name="android.bluetooth.adapter.action.STATE_CHANGED" />
|
|
<action android:name="android.bluetooth.adapter.action.SCAN_MODE_CHANGED" />
|
|
<action android:name="android.bluetooth.adapter.action.DISCOVERY_STARTED" />
|
|
<action android:name="android.bluetooth.adapter.action.DISCOVERY_FINISHED" />
|
|
<action android:name="android.bluetooth.adapter.action.LOCAL_NAME_CHANGED" />
|
|
|
|
<action android:name="android.bluetooth.device.action.FOUND" />
|
|
<action android:name="android.bluetooth.device.action.CLASS_CHANGED" />
|
|
<action android:name="android.bluetooth.device.action.ACL_CONNECTED" />
|
|
<action android:name="android.bluetooth.device.action.ACL_DISCONNECT_REQUESTED" />
|
|
<action android:name="android.bluetooth.device.action.ACL_DISCONNECTED" />
|
|
<action android:name="android.bluetooth.device.action.NAME_CHANGED" />
|
|
<action android:name="android.bluetooth.device.action.BOND_STATE_CHANGED" />
|
|
<action android:name="android.bluetooth.device.action.NAME_FAILED" />
|
|
<action android:name="android.bluetooth.device.action.PAIRING_REQUEST" />
|
|
<action android:name="android.bluetooth.device.action.PAIRING_CANCEL" />
|
|
<action android:name="android.bluetooth.device.action.UUID" />
|
|
|
|
<action android:name="android.bluetooth.headset.action.STATE_CHANGED" />
|
|
<action android:name="android.bluetooth.headset.action.AUDIO_STATE_CHANGED" />
|
|
|
|
<action android:name="android.bluetooth.devicepicker.action.LAUNCH" />
|
|
<action android:name="android.bluetooth.devicepicker.action.DEVICE_SELECTED" />
|
|
</intent-filter>
|
|
</receiver>
|
|
</application>
|
|
</manifest>
|