Skip to content Skip to sidebar Skip to footer

Setrangenotifier(rangenotifier) Has Been Deprecated?

I am using the alt.beacon library and now I get this warning: warning: [deprecation] setRangeNotifier(RangeNotifier) in BeaconManager has been deprecated. But what is the replacem

Solution 1:

Starting with version 2.9, you may have more than one RangeNotifier. So instead of calling:

beaconManager.setRangeNotifier(rangeNotifier);

Simply call:

beaconManager.addRangeNotifier(rangeNotifier);

Post a Comment for "Setrangenotifier(rangenotifier) Has Been Deprecated?"