How to start ranking without UUID using android scoring beacon?

I am making a beacon android app in this app. I want to find an evaluation beacon. So I want to know how to start evaluating a beacon without uuid and how to look for an evaluation beacon. I want to find uuid of Estimote. If anyone knows please help me with this.

+3


source to share


1 answer


All forecast beacons have the same proximity UUID unless changed. If you are using the Android SDK Score , then the proximity UUID is declared in com.estimote.sdk.utils.EstimoteBeacons.ESTIMOTE_PROXIMITY_UUID

( B9407F30-F5F8-466E-AFF9-25556B57FE6D

) by default .

Using Estimote Android SDK, you can start to hesitate without knowing the UUID proximity. See Demo with SDK (in particular ListBeaconsActivity ) and note that you can declare a scope like this:



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

      

+2


source







All Articles