-1

how can I open google nearby Settings in android through code?

Ashish Choudhary
  • 444
  • 1
  • 4
  • 11

1 Answers1

0

Use below code to open nearby Settings :

Intent viewIntent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);
startActivity(viewIntent)
Rishav Singla
  • 485
  • 4
  • 10
  • your answer is redirecting me on location settings page, I want google nearby settings – Ashish Choudhary Oct 24 '18 at 07:15
  • @AshishChoudhary google nearby settings interacts with services like location actoins, play games togrther. So please tell me exact what type of nearby setting you want. – Rishav Singla Oct 24 '18 at 07:21
  • @AshishChoudhary For particular Nearby google service there is no intent. You have to intent to setting page first . Read explanation : https://github.com/googlesamples/android-nearby/issues/65 – Rishav Singla Oct 24 '18 at 08:01