Updated on 2026-08-14

This commit is contained in:
Tangem 2025-04-22 17:19:42 +05:00
parent ebbce95832
commit 896da1def0
20 changed files with 564 additions and 9 deletions

View file

@ -0,0 +1,10 @@
package com.tangem.utils.info
interface AppInfoProvider {
val platform: String
val device: String
val osVersion: String
val language: String
val timezone: String
val appVersion: String
}