Search code examples
androiduuidestimoteandroid-ibeacon

How to start ranging without UUID using estimote beacon android?


I am making an android application on beacon in this app I want to find estimote beacon. So I want to know that how to start ranging beacon without uuid and how to search estimote beacon. I want to find uuid of Estimote. If anybody knows please help me out with this.


Solution

  • All Estimote beacons share the same proximity UUID unless changed. If you use Estimote Android SDK, then default proximity UUID is declared in com.estimote.sdk.utils.EstimoteBeacons.ESTIMOTE_PROXIMITY_UUID (B9407F30-F5F8-466E-AFF9-25556B57FE6D).

    Using Estimote Android SDK you can start ranging without knowing proximity UUID. See Demos from SDK (in particlar ListBeaconsActivity) and note that you can declare region as follows:

    private static final Region ALL_ESTIMOTE_BEACONS_REGION = new Region("rid", null, null, null);