Hi,
I need to monitor multiple beacon regions. So i have added the below code in the SDK (NotifyDemoActivity)
Region region = new Region("regionId1", "UUID1", "major1", "minor1");
beaconManager.startMonitoring(region)
region = new Region("regionId2", "UUID2", "major2", "minor2");
beaconManager.startMonitoring(region)
but only the regionid2 is getting monitored. Is anything else to be
provided
Thanks..