Updated on 2026-08-14

This commit is contained in:
Tangem 2023-10-20 12:49:07 +03:00
commit 473ec62419
10 changed files with 96 additions and 40 deletions

View file

@ -3,7 +3,7 @@ package com.tangem.tap.features.intentHandler.handlers
import android.content.Intent
import android.net.Uri
import com.tangem.core.analytics.Analytics
import com.tangem.feature.tokendetails.presentation.tokendetails.analytics.TokenScreenEvent
import com.tangem.domain.tokens.models.analytics.TokenScreenAnalyticsEvent
import com.tangem.tap.common.analytics.events.AnalyticsParam
import com.tangem.tap.features.intentHandler.IntentHandler
import com.tangem.tap.network.exchangeServices.ExchangeUrlBuilder
@ -21,7 +21,7 @@ class BuyCurrencyIntentHandler : IntentHandler {
val successUri = Uri.parse(ExchangeUrlBuilder.SUCCESS_URL)
return if (data.host == successUri.host && data.authority == successUri.authority) {
val currencyType = AnalyticsParam.CurrencyType.Currency(currency)
Analytics.send(TokenScreenEvent.Bought(currencyType.value))
Analytics.send(TokenScreenAnalyticsEvent.Bought(currencyType.value))
true
} else {
false