mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-03-13 14:21:04 +08:00
42 lines
1.3 KiB
TypeScript
42 lines
1.3 KiB
TypeScript
import { Injectable } from '@angular/core';
|
|
import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core';
|
|
|
|
/**
|
|
* @name Is Debug
|
|
* @description
|
|
* 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.
|
|
*
|
|
* @usage
|
|
* ```typescript
|
|
* import { IsDebug } from '@ionic-native/is-debug';
|
|
*
|
|
* constructor(private isDebug: IsDebug) { }
|
|
*
|
|
* ...
|
|
*
|
|
* this.isDebug.getIsDebug()
|
|
* .then(isDebug => console.log('Is debug:', isDebug))
|
|
* .catch(err => console.error(err));
|
|
*
|
|
* ```
|
|
*/
|
|
@Plugin({
|
|
pluginName: 'IsDebug',
|
|
plugin: 'cordova-plugin-is-debug',
|
|
pluginRef: 'cordova.plugins.IsDebug',
|
|
repo: 'https://github.com/mattlewis92/cordova-plugin-is-debug',
|
|
platforms: ['Android', 'iOS']
|
|
})
|
|
@Injectable()
|
|
export class IsDebug extends IonicNativePlugin {
|
|
/**
|
|
* Determine if an app was installed via xcode / eclipse / the ionic CLI etc
|
|
* @returns {Promise<boolean>} Returns a promise that resolves with true if the app was installed via xcode / eclipse / the ionic CLI etc. It will resolve to false if the app was downloaded from the app / play store by the end user.
|
|
*/
|
|
@Cordova()
|
|
getIsDebug(): Promise<boolean> {
|
|
return;
|
|
}
|
|
}
|