React Native 打开当前App的设置

51 阅读1分钟

安卓(Android)

import { Linking } from 'react-native';
Linking.openSettings();

iOS

import { Linking } from 'react-native';
Linking.openURL('app-settings:');

参考来自 link

:)