我正在尝试实现AltBeacon库,以类似于iOS的方式来对信标进行范围调整。但是,我无法让我的应用识别任何信标。
这是我的代码:
onCreate:
beaconManager = BeaconManager.getInstanceForApplication(this) beaconManager.bind(this) var region = Region(route.route.uuid, null, null, null) beaconManager.startMonitoringBeaconsInRegion(region)
onBeaconServiceConnect
override fun onBeaconServiceConnect() {
beaconManager.removeAllRangeNotifiers()
beaconManager.addRangeNotifier(object : RangeNotifier {
override fun didRangeBeaconsInRegion(
beacons: Collection<Beacon>,
region: Region?
) {
if (beacons.size > 0) {
println("I see ${beacons.size} beacons")
log += "The first beacon I see is about " + beacons.iterator().next().getDistance()
.toString() + " meters away."
log += "I see ${beacons.size} beacons.\n"
debugLog()
}
else
{
println("I see 0 beacons")
log += "I see 0 beacons\n"
debugLog()
}
}
})
try {
beaconManager.startRangingBeaconsInRegion(Region("myRangingUniqueId", null, null, null))
} catch (e: RemoteException) {
}
}
我是否缺少用于将标准iBeacon BLE数据包覆盖范围的元素?任何帮助表示赞赏。
谢谢
最可能的原因是:
route.route.uuid
与发送器的UUID不匹配。我写了这样的checklist to help troubleshoot问题。