28

I'm trying to find way to work with Bluetooth 4.0 (AKA Bluetooth Smart) devices using modern Android smartphones, namely - HTC One V.

As I understood, there is some issues using GATT profile even in Android 4.0 with Bluetooth 4.0 hardware because of API limitations.

I saw Motorola released it's own API for BT LE, but not sure it will work for other vendors. My goal is to get universal support for all smartphones with appropriate hardware.

Any suggestion for solution are highly appreciated.

Alexey

PS: Yes, I saw Android API for HDP, but it seems to be used only with 'classic' Bluetooth devices (not low energy ones, as BT LE does).

AjayKumarBasuthkar
  • 2,885
  • 2
  • 23
  • 27
AlexeyVMP
  • 2,386
  • 3
  • 24
  • 31
  • 1
    Samsung published a [Bluetooth BLE SDK (beta)](http://developer.samsung.com/ble). See this question http://stackoverflow.com/questions/11104708/bluetooth-4-0-smart-low-energy-on-samsung-galaxy-s3 – OneWorld May 02 '13 at 10:00
  • Here is an official statement about BLE from Google employees at the latest IO https://developers.google.com/events/io/sessions/326240948 All devices with 4.3 and BLE hardware will have the official Android BLE API, which is demonstrated at this video session. – OneWorld Jun 25 '13 at 12:11

6 Answers6

26

Unfortunately there are no Android native GATT APIs simply because Android currently does not support Bluetooth Low Energy at all. This may change in upcoming Android releases, but today manufacturers instead integrate 3rd party Bluetooth stacks with Low Energy support from vendors like Qualcomm, Broadcom or CSR. Those come with their own set of APIs, obviously limiting compatibility to the set of phones using that particular vendor's stack. The good news is that on other platforms like iOS or Windows 8 there are native GATT BLE APIs, and those are well supported. For Android, we will have to wait until Google decides to integrate the Linux/BlueZ work that has been done on BLE with Android.

introiboad
  • 997
  • 1
  • 11
  • 18
  • Thank you. Could you please provide vendors that proposes custom BT LE Android SDK for their platforms? (except Motorola) – AlexeyVMP Apr 09 '12 at 10:15
  • Hi Alexey. Although I do not want to publicly speak about particular vendors, it is usually enough to browse the publicly available Bluetooth Qualification website (https://www.bluetooth.org/tpg/listings.cfm) to see who has qualified what in terms of stacks for Android. Try Advanced Search and then restrict the spec version to 4.0 (you may try 4.0+HS too), and then just look for Android or known vendors. – introiboad Apr 10 '12 at 10:47
  • I forgot to mention that then you can also look for particular phones and their qualification listings, and they usually refer to the QID (Qualification ID) of the stack they are using, allowing you to match particular phone models with stack vendors. – introiboad Apr 10 '12 at 10:58
  • 1
    Have you checked out this API for the Broadcom chip?http://code.google.com/p/broadcom-ble/ – friedger May 31 '12 at 12:55
  • Rumors say that Google will release an official API around August 2012 – chwi Jun 25 '12 at 17:31
  • 2
    As I understood, no any movements on this issue was made in Android 4.1 :( – AlexeyVMP Sep 22 '12 at 06:54
  • 1
    Moreover, looks like Motorola broke BLE support on RAZR with ICS update. – AlexeyVMP Sep 22 '12 at 06:56
  • If you want GATT API support, please Star this Android issue: http://code.google.com/p/android/issues/detail?id=33371 – kenyee Oct 02 '12 at 22:24
  • Ok, I've starred that issue. Also, I have information that Samsung promised to fix it soon for Galaxy line. – AlexeyVMP Oct 06 '12 at 08:26
  • 1
    I actually decompiled some apps from Google Play that use the SGSIII's BLE capabilities and found a couple of methods that do not exist in Android's native BT API, and they're names clearly state they're BLE related. I've tried using them through java reflection and am currently working out the possibility of developing a library. But tests I've run so far have had shakey results. – Moises Jimenez Nov 28 '12 at 08:17
13

After some research I can only say this:

  • Motorola has sided with Broadcom to develop a proprietary API. It would seem it is extremely limited since it states there's support for existing profiles only. Check it out here.

  • Samsung fails to provide any information regarding its BLE API, which I can verify exists and is called samsung.bluetoothle. I actually decompiled some apps from Google Play that use the SGSIII's BLE capabilities and found a couple of methods that do not exist in Android's native BT API, and they're names clearly state they're BLE related. I've tried using them through java reflection and am currently working out the possibility of developing a library. But tests I've run so far have had shakey results at best. There is also a thread on Samsung's developer forum, I would suggest making some pressure here if you're interested.

  • Google has made almost no remarks in this aspect. There's a thread regarding this issues in the Galaxy Nexus, which you should star, with a lot of people complaining. The closest thing to an answer from Google can be found here.

[UPDATE]

Samsung has also modified a couple of Android's classes, more especifically:

  • BluetoothAdapter
  • BluetoothDevice

[UPDATE]

Since I've put this issue aside for a while due to lack of support from both Google and Samsung I'll post what I've learned so far:

BluetoothAdapter new methods:

public boolean android.bluetooth.BluetoothAdapter.leTestEnd()
public boolean android.bluetooth.BluetoothAdapter.setAvStreaming(boolean)
public boolean android.bluetooth.BluetoothAdapter.setScanLE(boolean)
public void android.bluetooth.BluetoothAdapter.setScoPathChange(int)
public boolean android.bluetooth.BluetoothAdapter.startLeDiscovery()

To use them do the following:

BluetoothAdapter ba = new BluetoothAdapter();
Method starteLeDiscoveryMethod = null;
starteLeDiscoveryMethod = ba.class.getMethod("startLeDiscovery");
starteLeDiscoveryMethod.invoke(ba);

NOTE: This method in particular works somewhat like the regular startDiscovery() method but, at least for me, it discovers the BLE device 2 out of 5 times. And remember, this is only for the SGSIII. I haven't gotten around to extracting the new methods in BluetoothDevice but when I do, I'll post them here.

Rathakrishnan Ramasamy
  • 1,612
  • 2
  • 25
  • 46
Moises Jimenez
  • 1,962
  • 3
  • 21
  • 43
  • I can confirm that this code works on Android 4.1.1 Samsung SGIII. Any further discoveries rodkarom? – BBaker Jan 21 '13 at 23:57
  • I'm likely to have to develop an "as cross-platform as possible" solution for BLE on android during next week. Any chance you have some sample code that could help me in my quest? There isn't as much as I wish online. – Mamsaac Mar 17 '13 at 05:42
  • I'm sorry top inform you that it won't be possible to develop a cross platform solution. Keep in mind that the only possibilities are Mototola's API and what I've gathered so far. – Moises Jimenez Mar 18 '13 at 07:42
  • You'll notice that the 3 out of 5 times it doesn't work, if you try to turn off bluetooth the phone crashes. – τεκ Apr 01 '13 at 16:20
  • Yup, said so on the note (how many times it works, hadn't noticed the crashing issue). – Moises Jimenez Apr 02 '13 at 07:21
2

SDK 18 has support for it now. Docs are here:

http://developer.android.com/guide/topics/connectivity/bluetooth-le.html

Testing on my Nexus 4 is crashing the bluetooth stack.

Nick Palmer
  • 2,589
  • 1
  • 25
  • 34
1

HTC has had BLE support since last year with HTC One X+, Droid DNA and of course the HTC One. Initially the HTC BLE API was upon request but it's now been freely downloadable at http://htcdev.com.

Yes the new standard Android BLE API from Google in Android API Level 18 is coming very soon (see preview from IO video) - but you can wrap third party APIs (HTC, Samsung, etc) in a compatible way to support the new standard API as all the APIs are quite similar in their support of the GATT profile (similar to IOS).

dljava
  • 1,825
  • 17
  • 14
0

BluetoothGatt api available in andorid

https://developer.android.com/reference/android/bluetooth/BluetoothGatt.html

Palak
  • 2,165
  • 2
  • 21
  • 31
0

As discovered, 4.3 has support for BLE, but it so broken, especially on Nexus devices. At my opinion, it's not ready for production.

AlexeyVMP
  • 2,386
  • 3
  • 24
  • 31