Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add 7 Byte UID support to "Clone UID" tool #278

Closed
wants to merge 6 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Uncheck 7 byte checkbox if 4 byte uid card is scanned.
  • Loading branch information
dmaasland committed Dec 9, 2019
commit 9cc346eb869da89a5535bbf56312e18b3ea7ee78
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,9 @@ public void onNewIntent(Intent intent) {
if (mUidLen == 7) {
m7ByteUid.setChecked(true);
mEditTextBlock0Rest.setText(mBlock0Rest7);
} else if (mUidLen == 4) {
m7ByteUid.setChecked(false);
mEditTextBlock0Rest.setText(mBlock0Rest);
}

appendToLog(getString(
Expand Down