How to start ranking without UUID using android scoring beacon?
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 to share