Shortly it's possible,
For IOS operating system, Try below,
import { Linking } from 'react-native'
Linking.openURL('app-settings:')
But Android not working with Linking,We should add two dependency,
npm install --save react-native-device-info
npm install react-native-intent-launcher
As a result,
import DeviceInfo from 'react-native-device-info';
import IntentLauncher, { IntentConstant } from 'react-native-intent-launcher'
const package= DeviceInfo.getBundleId();
const openAppSettings = () => {
if (Platform.OS === 'ios') {
Linking.openURL('app-settings:')
} else {
IntentLauncher.startActivity({
action: 'android.settings.APPLICATION_DETAILS_SETTINGS',
data: 'package:' + package
})
}
}