I have a Service which implements BeaconConsumer
and BootstrapNotifier
. In this case I need to call beaconManager.bind(this);
to bind BeaconManager in startBeaconManager
method. But also I use RegionBootstrap to range beacons. As RegionBootstrap includes beaconManager.bind(beaconConsumer);
, it causes not to start ranging any beacons. Note that I have also stopBeaconManager
method to unbind BeaconManager.
Do you have any suggestion to handle this situation?