Fixes after rebase

This commit is contained in:
Jorge Martín
2025-09-01 17:11:38 +02:00
parent 2fd9eaf17f
commit 8f09fd62d9
117 changed files with 310 additions and 295 deletions

View File

@@ -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

View File

@@ -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
}