Howto stop monitoring all regions

Is there a way to stop monitoring all regions? I want to clear all existing monitored regions before I go to program a whole new set of regions.

for (CLRegion *region in self.locationManager.monitoredRegions)
{
[ self.locationManager stopMonitoringForRegion: region];
}

How about in the Estimote Android SDK?

Hey there—you could keep a list of Region objects you started monitoring on yourself and then do smth similar:

for (Region region : this.regions) {
    this.beaconManager.stopMonitoring(region);
}

Let me know if you have any more questions (: