Fix providing the Sentry SDK DSN in Element Pro when no analytic modules are enabled

This commit is contained in:
Jorge Martín 2025-11-28 16:42:36 +01:00 committed by Jorge Martin Espinosa
parent 6c82393bcb
commit 890b6111ea
5 changed files with 77 additions and 2 deletions

View file

@ -0,0 +1,27 @@
/*
* Copyright (c) 2025 Element Creations Ltd.
*
* SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial.
* Please see LICENSE files in the repository root for full details.
*/
package io.element.android.libraries.di.annotations
import dev.zacsweers.metro.Qualifier
/**
* Qualifies the Sentry SDK DSN in the DI graph.
*/
@Retention(AnnotationRetention.RUNTIME)
@MustBeDocumented
@Qualifier
@Target(
AnnotationTarget.CLASS,
AnnotationTarget.FIELD,
AnnotationTarget.FUNCTION,
AnnotationTarget.PROPERTY,
AnnotationTarget.PROPERTY_GETTER,
AnnotationTarget.VALUE_PARAMETER,
AnnotationTarget.TYPE,
)
annotation class SentrySdkDsn