diff options
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r-- | AndroidManifest.xml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index f6e063b..7f23ce0 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -864,6 +864,15 @@ </activity> <receiver + android:name=".bluetooth.BluetoothDiscoveryReceiver"> + <intent-filter> + <action android:name="android.bluetooth.adapter.action.DISCOVERY_STARTED" /> + <action android:name="android.bluetooth.adapter.action.DISCOVERY_FINISHED" /> + <category android:name="android.intent.category.DEFAULT" /> + </intent-filter> + </receiver> + + <receiver android:name=".bluetooth.DockEventReceiver"> <intent-filter> <action android:name="android.intent.action.DOCK_EVENT" /> |