Skip to content Skip to sidebar Skip to footer

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

Solution 1:

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:

privatestaticfinalRegionALL_ESTIMOTE_BEACONS_REGION=newRegion("rid", null, null, null);

Post a Comment for "How To Start Ranging Without Uuid Using Estimote Beacon Android?"