How To Increase The Delay In The Data Of The Region Notifier?
I have using Android Beacon Library for one of my beacon solution .Is there a way put a delay in data produced by the range notifier because it is giving data very frequently . Bel
Solution 1:
There are two methods which can help you
mBeaconManager.setBackgroundBetweenScanPeriod(10000);
mBeaconManager.setForegroundBetweenScanPeriod(10000);
Check official javadocs for details
Post a Comment for "How To Increase The Delay In The Data Of The Region Notifier?"