9

I tried this answer but it didn't work with Android.

How can I open Settings with Linking.openURL('setting-url-here')

Minh Chu
  • 249
  • 1
  • 4
  • 16
  • refer this link https://stackoverflow.com/questions/41677735/react-native-unable-to-open-device-settings-from-my-android-app – Arunkumar Jun 09 '17 at 14:11

2 Answers2

1

Linking.openSettings()

Better late than never. For more info.

Stack overflow question and answer: React Native Open settings through Linking.openURL in IOS

ReactNative Docs: https://reactnative.dev/docs/linking#open-custom-settings

unSensei
  • 121
  • 7
1

You can use this library react-native-common-intents React-native-Common-intents

to open settings you can call

RNIntents.openSettings();
Wahdat Jan
  • 3,848
  • 3
  • 17
  • 42