upload android base code part7
This commit is contained in:
parent
4e516ec6ed
commit
841ae54672
25229 changed files with 1709508 additions and 0 deletions
36
android/development/apps/BluetoothDebug/AndroidManifest.xml
Normal file
36
android/development/apps/BluetoothDebug/AndroidManifest.xml
Normal file
|
@ -0,0 +1,36 @@
|
|||
<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.DISAPPEARED" />
|
||||
<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>
|
Loading…
Add table
Add a link
Reference in a new issue