Updated on 2026-08-14

This commit is contained in:
Tangem 2026-04-03 12:38:36 +03:00
parent d0c76d4fc4
commit ccc55615e3

View file

@ -25,13 +25,13 @@ internal object ABTestsManagerModule {
appScope: AppCoroutineScope,
): ABTestsManager {
return if (BuildConfig.AB_TESTS_ENABLED) {
StubABTestsManager()
} else {
AmplitudeABTestsManager(
application = application,
apiKey = environmentConfig.amplitudeApiKey,
scope = appScope,
)
} else {
StubABTestsManager()
}
}
}