How can i check whether NFC is enabled or not programmatically? Is there any way to enable the NFC on the device from my program? Please help me
mNfcAdapter = NfcAdapter.getDefaultAdapter(this.getApplicationContext()); try { if (mNfcAdapter != null) { result = true; } }
We can verify using NfcAdapter with context.