LostCode
LostCode

Reputation: 533

Phonegap check android device status

I developed Android phonegap application.

my app need check Device NFC Status (Enabled or Disabled)

I use Phonegap nfc-plugin but this plugin not support that.

How to check device nfc status via phonegap?

Upvotes: 0

Views: 762

Answers (1)

doncoleman
doncoleman

Reputation: 2283

On Android, the plugin checks the NFC status on every Cordova API call.

https://github.com/chariotsolutions/phonegap-nfc/blob/0.4.8/src/android/src/com/chariotsolutions/nfc/plugin/NfcPlugin.java#L68

If the device does not have NFC, the error handler will receive NO_NFC. If NFC is disabled the error handler will receive NFC_DISABLED.

https://github.com/chariotsolutions/phonegap-nfc/blob/0.4.8/src/android/src/com/chariotsolutions/nfc/plugin/NfcPlugin.java#L47

Upvotes: 1

Related Questions