Is Debug
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.
联系我们?

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.
Ionic Is Debug插件的安装(Installation)
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
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));