Updated on 2026-08-14

This commit is contained in:
Tangem 2023-01-11 14:57:29 +03:00
parent b7ce5f50d0
commit 32605e45db
3 changed files with 9 additions and 4 deletions

@ -1 +1 @@
Subproject commit 8453faa078220801858166081947972639f166db
Subproject commit 93150ef69daf244a92266d7cdfbc9294b745b4e2

View file

@ -102,7 +102,7 @@ class ConfigManager {
infuraProjectId = values.infuraProjectId,
tronGridApiKey = values.tronGridApiKey,
),
appsFlyerDevKey = values.appsFlyerDevKey,
appsFlyerDevKey = values.appsFlyer.appsFlyerDevKey,
amplitudeApiKey = values.amplitudeApiKey,
shopify = values.shopifyShop,
zendesk = values.zendesk,
@ -130,7 +130,7 @@ class ConfigManager {
),
infuraProjectId = values.infuraProjectId,
),
appsFlyerDevKey = values.appsFlyerDevKey,
appsFlyerDevKey = values.appsFlyer.appsFlyerDevKey,
amplitudeApiKey = values.amplitudeApiKey,
shopify = values.shopifyShop,
zendesk = values.zendesk,

View file

@ -29,7 +29,7 @@ class ConfigValueModel(
val bscQuiknodeApiKey: String,
val blockcypherTokens: Set<String>?,
val infuraProjectId: String?,
val appsFlyerDevKey: String,
val appsFlyer: AppsFlyer,
val shopifyShop: ShopifyShop?,
val zendesk: ZendeskConfig?,
val saltPay: SaltPayConfig,
@ -37,6 +37,11 @@ class ConfigValueModel(
val amplitudeApiKey: String,
)
data class AppsFlyer(
val appsFlyerDevKey: String,
val appsFlyerAppID: String,
)
class ConfigModel(
val features: FeatureModel?,
val configValues: ConfigValueModel?,