Browse Source

Fix compile with noop analytics provider

pull/2698/head
SpiritCroc 1 month ago
parent
commit
6e2d163dcf
  1. 1
      changelog.d/2698.misc
  2. 2
      services/analytics/noop/build.gradle.kts
  3. 30
      services/analytics/noop/src/main/kotlin/io/element/android/services/analytics/noop/NoopScreenTracker.kt

1
changelog.d/2698.misc

@ -0,0 +1 @@ @@ -0,0 +1 @@
Fix compile for forks that use the `noop` analytics module

2
services/analytics/noop/build.gradle.kts

@ -14,7 +14,7 @@ @@ -14,7 +14,7 @@
* limitations under the License.
*/
plugins {
id("io.element.android-library")
id("io.element.android-compose-library")
alias(libs.plugins.anvil)
}

30
services/analytics/noop/src/main/kotlin/io/element/android/services/analytics/noop/NoopScreenTracker.kt

@ -0,0 +1,30 @@ @@ -0,0 +1,30 @@
/*
* Copyright (c) 2024 New Vector Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.element.android.services.analytics.noop
import androidx.compose.runtime.Composable
import com.squareup.anvil.annotations.ContributesBinding
import im.vector.app.features.analytics.plan.MobileScreen
import io.element.android.libraries.di.AppScope
import io.element.android.services.analytics.api.ScreenTracker
import javax.inject.Inject
@ContributesBinding(AppScope::class)
class NoopScreenTracker @Inject constructor() : ScreenTracker {
@Composable
override fun TrackScreen(screen: MobileScreen.ScreenName) = Unit
}
Loading…
Cancel
Save