# cordova-plugin-devoptionschecker

> This is a cordova plugin that verifies if developer settings is enabled.

Latest version **1.0.2** (published 2019-12-19) · MIT license · 0 weekly downloads

## Install

```sh
npm install cordova-plugin-devoptionschecker
pnpm add cordova-plugin-devoptionschecker
yarn add cordova-plugin-devoptionschecker
bun add cordova-plugin-devoptionschecker
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.2 |
| Published | 2019-12-19 |
| First published | 2019-10-15 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 3.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | mmenezes |
| Maintainers | mmenezes, ronaldarndt |
| Keywords | ecosystem:cordova, cordova-android, developer-options, developer-settings, checker |

## Links

- npm: https://www.npmjs.com/package/cordova-plugin-devoptionschecker
- npm.io page: https://npm.io/package/cordova-plugin-devoptionschecker

## Alternatives

- [@sindresorhus/slugify](https://npm.io/package/@sindresorhus/slugify.md) — 3.7M weekly downloads
- [solid-js](https://npm.io/package/solid-js.md) — 2.7M weekly downloads
- [expo-glass-effect](https://npm.io/package/expo-glass-effect.md) — 2.5M weekly downloads
- [nanoassert](https://npm.io/package/nanoassert.md) — 780.8K weekly downloads
- [@ffmpeg/ffmpeg](https://npm.io/package/@ffmpeg/ffmpeg.md) — 529.5K weekly downloads

## Recent versions

- 1.0.2 (latest) — 2019-12-19
- 1.0.1 — 2019-10-15
- 1.0.0 — 2019-10-15

## README

# cordova-plugin-devoptionschecker

This is a cordova plugin that verifies if developer settings is enabled.

## Supported Platforms

-   Android API all versions

## Installation

cordova plugin add cordova-plugin-devoptionschecker

## Usage in javascript

```js
document.addEventListener('deviceready', onDeviceReady, false);

function onDeviceReady() {
	cordova.plugins.devoptionschecker.check(successCallback, errorCallback);
}

function successCallback(result) {
	// json object which returns devOptionsEnabled: true - enabled, false - disabled
	console.log(result);
}

function errorCallback(error) {
	console.log(error);
}
```

---
_Source: https://npm.io/package/cordova-plugin-devoptionschecker · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
