summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorHemant Gupta <hemantg@codeaurora.org>2013-11-11 11:49:04 +0530
committerLinux Build Service Account <lnxbuild@localhost>2014-11-04 08:25:34 -0700
commit35002149f8eac4040791cc746ea40096d5ad43dd (patch)
treecbcb5e9b86d5def5a2db71f09722a051483eadb1 /AndroidManifest.xml
parent112ca397cdec7cb23ade4dde0be642ed5eca9696 (diff)
downloadandroid_packages_apps_Bluetooth-35002149f8eac4040791cc746ea40096d5ad43dd.tar.gz
android_packages_apps_Bluetooth-35002149f8eac4040791cc746ea40096d5ad43dd.tar.bz2
android_packages_apps_Bluetooth-35002149f8eac4040791cc746ea40096d5ad43dd.zip
Bluetooth: Add support for HID Device Role
This patch adds support for HID Device Role which enables phone being used as a Bluetooth keyboad or mouse. Change-Id: I931867442111ad997a34a166c7b2ec1daf317ddd
Diffstat (limited to 'AndroidManifest.xml')
-rwxr-xr-xAndroidManifest.xml10
1 files changed, 9 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index aeed21c0e..e5bf9a741 100755
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -316,7 +316,7 @@
<action android:name="android.bluetooth.IBluetoothPan" />
</intent-filter>
</service>
- <service
+ <service
android:process="@string/process"
android:name = ".hfpclient.HeadsetClientService"
android:enabled="@bool/profile_supported_hfpclient">
@@ -337,5 +337,13 @@
<action android:name="android.wipower.IWipower" />
</intent-filter>
</service>
+ <service
+ android:process="@string/process"
+ android:name = ".hid.HidDevService"
+ android:enabled="@bool/profile_supported_hidd">
+ <intent-filter>
+ <action android:name="android.bluetooth.IBluetoothHidDevice" />
+ </intent-filter>
+ </service>
</application>
</manifest>