0.1.1 • Published 2 years ago

react-native-developer-options v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

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