Reputation: 533
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
Reputation: 2283
On Android, the plugin checks the NFC status on every Cordova API call.
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.
Upvotes: 1