diff options
author | Helvio Pedreschi <helvio88@gmail.com> | 2013-07-30 17:35:55 -0300 |
---|---|---|
committer | Ziyann <jaraidaniel@gmail.com> | 2014-11-14 09:15:09 +0100 |
commit | 5d5fed712239c2e15360c814b34da830797dfcd2 (patch) | |
tree | f03def2382debe3affec311592f8dffa5d7d70f4 | |
parent | 275018c3ee8d48b84844d72d584b4e8287cd4bb4 (diff) | |
download | device_samsung_tuna-5d5fed712239c2e15360c814b34da830797dfcd2.zip device_samsung_tuna-5d5fed712239c2e15360c814b34da830797dfcd2.tar.gz device_samsung_tuna-5d5fed712239c2e15360c814b34da830797dfcd2.tar.bz2 |
Enable Bluetooth 4.0 (BLE) for tuna-based devices
- Needed to:
http://review.cyanogenmod.org/46543
http://review.cyanogenmod.org/46989
Change-Id: If299d291a401ddeff17b6d0db5b2df1059ea3a18
-rw-r--r-- | bluetooth/bdroid_buildcfg.h | 6 | ||||
-rw-r--r-- | device.mk | 1 |
2 files changed, 4 insertions, 3 deletions
diff --git a/bluetooth/bdroid_buildcfg.h b/bluetooth/bdroid_buildcfg.h index 9e6899c..da15347 100644 --- a/bluetooth/bdroid_buildcfg.h +++ b/bluetooth/bdroid_buildcfg.h @@ -18,8 +18,8 @@ #define _BDROID_BUILDCFG_H #define BTM_DEF_LOCAL_NAME "Galaxy Nexus" -#define BLE_INCLUDED FALSE -#define BTA_GATT_INCLUDED FALSE -#define SMP_INCLUDED FALSE +#define BLE_INCLUDED TRUE +#define BTA_GATT_INCLUDED TRUE +#define SMP_INCLUDED TRUE #endif @@ -122,6 +122,7 @@ PRODUCT_COPY_FILES += \ # These are the hardware-specific features PRODUCT_COPY_FILES += \ frameworks/native/data/etc/handheld_core_hardware.xml:system/etc/permissions/handheld_core_hardware.xml \ + frameworks/native/data/etc/android.hardware.bluetooth_le.xml:system/etc/permissions/android.hardware.bluetooth_le.xml \ frameworks/native/data/etc/android.hardware.camera.flash-autofocus.xml:system/etc/permissions/android.hardware.camera.flash-autofocus.xml \ frameworks/native/data/etc/android.hardware.camera.front.xml:system/etc/permissions/android.hardware.camera.front.xml \ frameworks/native/data/etc/android.hardware.location.gps.xml:system/etc/permissions/android.hardware.location.gps.xml \ |