Updated on 2026-08-14

This commit is contained in:
Tangem 2026-03-31 16:26:45 +04:00
parent 821c6b5697
commit 9a7cc4e717
4 changed files with 116 additions and 1 deletions

View file

@ -35,4 +35,19 @@ sealed class TechAnalyticsEvent(
put("isTrusted", isTrusted.toString())
},
)
class MediaTekVulnerability(
model: String,
manufacturer: String,
hardware: String,
patch: String,
) : TechAnalyticsEvent(
event = "MediaTek Vulnerability",
params = mapOf(
"SocModel" to model,
"SocManufacturer" to manufacturer,
"SocHardware" to hardware,
"Patch" to patch,
),
)
}