Reputation: 1314
I'm developing an Android app that uses the Estimote SDK available on GitHub.
But I'm still not able to use my Android device (5.0.1) as advertiser to be discovered by other devices that use the Estimote app. I've tried to use QuickBeacon by Radius Networks, Inc. but it showed a message saying that my OS on my device does not support Bluetooth LE advertising.
Please can you help me with that?
Upvotes: 1
Views: 441
Reputation: 171
Not all Android devices supports BLE advertisement, you can check it using this callback. Also you can simulate Estimote's iBeacon (or any other beacons) using simple Linux command from Bluez lib:
UUID="B9 40 7F 30 F5 F8 46 6E AF F9 25 55 6B 57 FE 6D"
MAJOR="00 01"
MINOR="00 02"
sudo hcitool -i hci0 cmd 0x08 0x0008 1E 02 01 1A 1A FF 4C 00 02 15 $UUID $MAJOR $MINOR C82.
Upvotes: 0
Reputation: 357
yes not all android device support Ble Advertisment.
you can check list of devices on this link which are supported.
http://altbeacon.github.io/android-beacon-library/beacon-transmitter-devices.html
Upvotes: 0
Reputation: 486
If you want to simulate Estimote beacons, you need to use iOS Estimote app. In that way Estimote app for Android will discover it.
Upvotes: 1