Updated on 2026-08-14

This commit is contained in:
Tangem 2026-03-12 20:12:38 +04:00
parent 00c8ef60e9
commit 431a969a43
2 changed files with 3 additions and 1 deletions

View file

@ -4,6 +4,7 @@ import android.app.Application
import io.customer.messagingpush.ModuleMessagingPushFCM
import io.customer.sdk.CustomerIO
import io.customer.sdk.CustomerIOBuilder
import io.customer.sdk.data.model.Region
import timber.log.Timber
/**
@ -25,6 +26,7 @@ internal class CustomerIoClient(
applicationContext = application,
cdpApiKey = cdpApiKey,
)
.region(Region.EU)
.trackApplicationLifecycleEvents(false)
.autoTrackActivityScreens(false)
.addCustomerIOModule(ModuleMessagingPushFCM())