有什么方法可以使用React Native Linking打开MYApp的应用设置。
我正在关注this以获取App-Prefs。但是除了IOS中的root设置页面,我无法打开其他设置。
例如:Linking.openURL('App-prefs:root=General&path=About');
我可以使用react-native-open-settings打开应用设置。
有什么方法可以使用React Native提供的Linking API打开应用程序设置。
谢谢。
答案 0 :(得分:1)
这对我有用,并打开我的应用程序设置:
Linking.openURL('app-settings://');