Open apps settings in ios react-native

Viewed 4640

Is there any way to open MYApp's app settings using React Native Linking.

I'm following this for App-Prefs. But I'm not able to open any other settings than root settings page in IOS.

eg: Linking.openURL('App-prefs:root=General&path=About');

enter image description here

I am able to open app settings with react-native-open-settings.

Is there any way to open app settings using Linking API provided by React Native.

Thanks in advance.

1 Answers

This works for me and opens settings of my application:

Linking.openURL('app-settings://');
Related