Skip to content

eTryp/react-native-developer-options

Repository files navigation

react-native-developer-options

Check if the device has the developer options enabled

Installation

npm install react-native-developer-options

Usage

import {
  isDeveloperModeEnabled,
  openDeveloperSettings,
} from 'react-native-developer-options';

// ...
const result = await isDeveloperModeEnabled();
if (result === true) {
  openDeveloperSettings();
}
// ...

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT


Made with create-react-native-library