Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

cordova-plugin-is-debuggable

Is the application debuggable?

ecosystem:cordova, cordova-android, cordova-ios, build, BuildConfig, DEBUG

readme

cordova-plugin-is-debuggable

Installation

cordova plugin add cordova-plugin-is-debuggable

Supported platforms

  • Android
  • iOS

Example

document.addListener('deviceready', onDeviceReady, false);
function onDeviceReady() {
    window.plugins.isDebuggable(successCallback, errorCallback);
}