Updated on 2026-08-14
This commit is contained in:
parent
821c6b5697
commit
9a7cc4e717
4 changed files with 116 additions and 1 deletions
|
|
@ -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,
|
||||
),
|
||||
)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue