How Can I "refresh" My Regionbootstrap (android Beacon Library)?
I am developing an Android app that works with Beacons (thanks to the usage of Android Beacon Library). I have an Application that extends BootstrapNotifier that calls a Controller
Solution 1:
You should construct a RegionBootstrap only once. If you want to alter the monitored regions by adding new ones, just do so directly on BeaconManager like this:
beaconManager.startMonitoringBeaconsInRegion(new Region("myMonitoringUniqueId", null, null, null));
Post a Comment for "How Can I "refresh" My Regionbootstrap (android Beacon Library)?"