I know How to get Nfc Unique ID, When NFC Reader,
private Tag tag;
//Read success.
protected void onNewIntent(Intent intent) {
super.onNewIntent(intent);
tag = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG);
byte[] id = tag.getId();
}
but I want Even if I do not read the NFC card.
How to get NFC id, without reading nfc on android?
thanks.