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
  • 259
  • 2
  • 4
  • 17
  • 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

2

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
  • 131
  • 8
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,988
  • 3
  • 21
  • 46