Reputation: 3912
is it possible to take the user to Settings -> Location using intent, so he would be able to enable the app go get the device location?
This is the screen I want to go to:
Upvotes: 0
Views: 2216
Reputation: 1790
Try this:
Intent intent= new Intent(android.provider.Settings.ACTION_LOCATION_SOURCE_SETTINGS);
startActivity(intent);
Upvotes: 2