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

@ -155,6 +155,10 @@ class TapCashData {
}
private func unpackPurseData(data: [UInt8]) {
guard data.count >= 95 else {
debugLog("TapCash purse data too short: \(data.count)")
return
}
version = Array(data[0..<1])
purseStatus = Array(data[1..<2])
purseBalance = Array(data[2..<5])