This commit is contained in:
Adam Hartley 2015-11-09 12:59:40 +00:00
Родитель 2ac5e32015
Коммит 4e0e1fb189
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -20,6 +20,12 @@ namespace Location
//locMgr.RequestWhenInUseAuthorization (); // only in foreground
}
// iOS 9 requires the following for background location updates
// By default this is set to false and will not allow background updates
if (UIDevice.CurrentDevice.CheckSystemVersion (9, 0)) {
locMgr.AllowsBackgroundLocationUpdates = true;
}
LocationUpdated += PrintLocation;
}