【发布时间】:2015-01-06 16:16:24
【问题描述】:
我正在这个应用程序中的信标上制作一个 android 应用程序,我想找到 estimote 信标。所以我想知道如何在没有 uuid 的情况下开始测距信标以及如何搜索 estimote 信标。我想找到 Estimote 的 uuid。如果有人知道,请帮我解决这个问题。
【问题讨论】:
标签: android uuid estimote android-ibeacon
我正在这个应用程序中的信标上制作一个 android 应用程序,我想找到 estimote 信标。所以我想知道如何在没有 uuid 的情况下开始测距信标以及如何搜索 estimote 信标。我想找到 Estimote 的 uuid。如果有人知道,请帮我解决这个问题。
【问题讨论】:
标签: android uuid estimote android-ibeacon
除非更改,否则所有 Estimote 信标共享相同的邻近 UUID。如果您使用Estimote Android SDK,则默认邻近UUID 声明在com.estimote.sdk.utils.EstimoteBeacons.ESTIMOTE_PROXIMITY_UUID (B9407F30-F5F8-466E-AFF9-25556B57FE6D) 中。
使用 Estimote Android SDK,您可以在不知道邻近 UUID 的情况下开始测距。请参阅Demos from SDK(尤其是ListBeaconsActivity)并注意您可以按如下方式声明区域:
private static final Region ALL_ESTIMOTE_BEACONS_REGION = new Region("rid", null, null, null);
【讨论】: