Improve NFC history readers and prepare production build

This commit is contained in:
2026-05-08 05:40:52 +07:00
parent 1dc293c697
commit bd34467ddc
14 changed files with 688 additions and 182 deletions

View File

@ -25,14 +25,14 @@ class ApduResponse {
}
func getSw1() -> UInt8{
return sw1!
return sw1 ?? 0
}
func getSw2() -> UInt8{
return sw2!
return sw2 ?? 0
}
func getData() -> Data{
return data!
return data ?? Data()
}
}