We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 353f789 commit dafdb26Copy full SHA for dafdb26
Mifare Classic Tool/app/src/main/java/de/syss/MifareClassicTool/Activities/TagInfoTool.java
@@ -127,6 +127,7 @@ public void onReadMore(View view) {
127
private void updateTagInfo(Tag tag) {
128
129
if (tag != null) {
130
+ NfcA nfca = NfcA.get(tag);
131
// Check for MIFARE Classic support.
132
mMFCSupport = Common.checkMifareClassicSupport(tag, this);
133
@@ -157,7 +158,6 @@ private void updateTagInfo(Tag tag) {
157
158
uid += ", CL3";
159
}
160
uid += ")";
- NfcA nfca = NfcA.get(tag);
161
// Swap ATQA to match the common order like shown here:
162
// http://nfc-tools.org/index.php?title=ISO14443A
163
byte[] atqaBytes = nfca.getAtqa();
0 commit comments