location-services
How to enable Location access programmatically in android?
Use below code to check. If it is disabled, dialog box will be generated public void statusCheck() { final LocationManager manager = (LocationManager) getSystemService(Context.LOCATION_SERVICE); if (!manager.isProviderEnabled(LocationManager.GPS_PROVIDER)) { buildAlertMessageNoGps(); } } private void buildAlertMessageNoGps() { final AlertDialog.Builder builder = new AlertDialog.Builder(this); builder.setMessage(“Your GPS seems to be disabled, do you want to enable it?”) .setCancelable(false) .setPositiveButton(“Yes”, new … Read more
How to open Location services screen from setting screen?
I have tried all the above answers,it’s not working on iOS11..it just opens settings page and not the app settings .. Finally this works.. UIApplication.shared.open(URL(string:UIApplicationOpenSettingsURLString)!) Swift 4.2: UIApplication.shared.open(URL(string:UIApplication.openSettingsURLString)!) Refer: https://developer.apple.com/documentation/uikit/uiapplicationopensettingsurlstring?language=swift
Location Services not working in iOS 11
It would appear that apple have added yet another privacy feature. The user is now able to override our requestAlwaysAuthorization and downgrade it to requestWhenInUseAuthorization – Which means as a developer we now have to supply both descriptions in the Info.plist I found that they have added a new key NSLocationAlwaysAndWhenInUseUsageDescription /* * Either the … Read more