forked from dsutanto/bChot-android
49 lines
1.3 KiB
Kotlin
49 lines
1.3 KiB
Kotlin
import config.BuildTimeConfig
|
|
import extension.buildConfigFieldStr
|
|
import extension.setupDependencyInjection
|
|
import extension.testCommonDependencies
|
|
|
|
/*
|
|
* Copyright (c) 2025 Element Creations Ltd.
|
|
* Copyright 2023, 2024 New Vector Ltd.
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial.
|
|
* Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
plugins {
|
|
id("io.element.android-library")
|
|
}
|
|
|
|
android {
|
|
namespace = "io.element.android.services.analyticsproviders.posthog"
|
|
|
|
buildFeatures {
|
|
buildConfig = true
|
|
}
|
|
|
|
defaultConfig {
|
|
buildConfigFieldStr(
|
|
name = "POSTHOG_HOST",
|
|
value = BuildTimeConfig.SERVICES_POSTHOG_HOST.takeIf { isEnterpriseBuild } ?: ""
|
|
)
|
|
buildConfigFieldStr(
|
|
name = "POSTHOG_APIKEY",
|
|
value = BuildTimeConfig.SERVICES_POSTHOG_APIKEY.takeIf { isEnterpriseBuild } ?: ""
|
|
)
|
|
}
|
|
}
|
|
|
|
setupDependencyInjection()
|
|
|
|
dependencies {
|
|
implementation(libs.posthog) {
|
|
exclude("com.android.support", "support-annotations")
|
|
}
|
|
implementation(projects.features.enterprise.api)
|
|
implementation(projects.libraries.core)
|
|
implementation(projects.libraries.di)
|
|
implementation(projects.services.analyticsproviders.api)
|
|
|
|
testCommonDependencies(libs)
|
|
}
|