Fixes after rebase
This commit is contained in:
@@ -23,7 +23,7 @@ import kotlinx.coroutines.flow.flowOf
|
||||
@SingleIn(AppScope::class)
|
||||
@ContributesBinding(AppScope::class)
|
||||
@Inject
|
||||
class NoopAnalyticsService() : AnalyticsService {
|
||||
class NoopAnalyticsService : AnalyticsService {
|
||||
override fun getAvailableAnalyticsProviders(): Set<AnalyticsProvider> = emptySet()
|
||||
override val userConsentFlow: Flow<Boolean> = flowOf(false)
|
||||
override suspend fun setUserConsent(userConsent: Boolean) = Unit
|
||||
|
||||
@@ -16,7 +16,7 @@ import io.element.android.services.analytics.api.ScreenTracker
|
||||
|
||||
@ContributesBinding(AppScope::class)
|
||||
@Inject
|
||||
class NoopScreenTracker() : ScreenTracker {
|
||||
class NoopScreenTracker : ScreenTracker {
|
||||
@Composable
|
||||
override fun TrackScreen(screen: MobileScreen.ScreenName) = Unit
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user