Diagnostic
Checks whether device hardware features are enabled or available to the app, e.g. camera, GPS, wifi
https://github.com/dpa99c/cordova-diagnostic-plugin
Stuck on a Cordova issue?
If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Installation#
- Capacitor
- Cordova
- Enterprise
$ npm install cordova.plugins.diagnostic $ npm install @ionic-native/diagnostic $ ionic cap sync
$ ionic cordova plugin add cordova.plugins.diagnostic $ npm install @ionic-native/diagnostic
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. Learn More or if you're interested in an enterprise version of this plugin Contact Us
#
Supported Platforms- Android
- iOS
- Windows
#
Usage#
ReactLearn more about using Ionic Native components in React
#
Angularimport { Diagnostic } from '@ionic-native/diagnostic/ngx';
constructor(private diagnostic: Diagnostic) { }
...
let successCallback = (isAvailable) => { console.log('Is available? ' + isAvailable); }let errorCallback = (e) => console.error(e);
this.diagnostic.isCameraAvailable().then(successCallback).catch(errorCallback);
this.diagnostic.isBluetoothAvailable().then(successCallback, errorCallback);
this.diagnostic.getBluetoothState() .then((state) => { if (state == this.diagnostic.bluetoothState.POWERED_ON){ // do something } else { // do something else } }).catch(e => console.error(e));