Flutter教程

Is Debug

Contents

Detect if the app is running in debug mode or not. Debug mode is when the app is built and installed locally via xcode / eclipse / the cordova cli etc, compared to release mode when the app was downloaded from the app / play store via an end user.

https://github.com/mattlewis92/cordova-plugin-is-debug

联系我们?

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic's experts offer official maintenance, support, and integration help.

Contact Us Today!

Ionic Is Debug插件的安装(Installation)

ionic cordova plugin add cordova-plugin-is-debug npm install @ionic-native/is-debug
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
ionic enterprise register --key=YOURPRODUCTKEY npm install @ionic-enterprise/is-debug

Ionic Is Debug插件支持的平台(Supported Platforms)

  • Android
  • iOS

Ionic Is Debug插件的用法(Usage)

import { IsDebug } from '@ionic-native/is-debug/ngx';

constructor(private isDebug: IsDebug) { }

...

this.isDebug.getIsDebug()
  .then(isDebug => console.log('Is debug:', isDebug))
  .catch(err => console.error(err));