How to use the expo-intent-launcher.ACTION_MANAGE_APPLICATIONS_SETTINGS function in expo-intent-launcher

To help you get started, we’ve selected a few expo-intent-launcher examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github bytefury / crater-mobile / src / components / FilePicker / index.js View on Github external
onPress: () => {
                            if (isIosPlatform()) {
                                Linking.openURL('app-settings:');
                            } else {
                                IntentLauncher.startActivityAsync(IntentLauncher.ACTION_MANAGE_APPLICATIONS_SETTINGS);
                            }
                        }
                    },