Merge pull request #2698 from SpiritCroc/noop-analytics-screen-tracker
Fix compile with noop analytics provider
This commit is contained in:
commit
f77a9648ef
3 changed files with 32 additions and 1 deletions
1
changelog.d/2698.misc
Normal file
1
changelog.d/2698.misc
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
Fix compile for forks that use the `noop` analytics module
|
||||||
|
|
@ -14,7 +14,7 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
plugins {
|
plugins {
|
||||||
id("io.element.android-library")
|
id("io.element.android-compose-library")
|
||||||
alias(libs.plugins.anvil)
|
alias(libs.plugins.anvil)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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…
Add table
Add a link
Reference in a new issue