* Add handy extension "VariantDimension.buildConfigFieldStr" * Update configuration for MapTiler. * Update configuration for Sentry. * Build AnalyticsConfig depending on analytics configuration. * Configure analytics policy url. * Add handy extension "VariantDimension.buildConfigFieldBoolean" * Configure legal urls. * Add a way to disable rageshake / reporting bugs. * Update screenshots * Quality * Fix test * Use `ifBlank` extension * Add missing configuration for PostHog * Update configuration for Rageshake. * Add build log. * Disable crash detection if rageshake feature is not available. Disabled twice. * Hide link to analytics policy if the link is missing. * Fix test when run in enterprise context. * Use RageshakeFeatureAvailability where appropriate. * Rename file. * Move some classes to their correct module. * Update screenshots --------- Co-authored-by: ElementBot <android@element.io>
74 lines
2.3 KiB
Kotlin
74 lines
2.3 KiB
Kotlin
/*
|
|
* Copyright 2022-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.
|
|
*/
|
|
|
|
import config.BuildTimeConfig
|
|
import extension.buildConfigFieldStr
|
|
import extension.readLocalProperty
|
|
|
|
plugins {
|
|
id("io.element.android-compose-library")
|
|
id("kotlin-parcelize")
|
|
}
|
|
|
|
android {
|
|
namespace = "io.element.android.features.location.api"
|
|
|
|
buildFeatures {
|
|
buildConfig = true
|
|
}
|
|
|
|
defaultConfig {
|
|
buildConfigFieldStr(
|
|
name = "MAPTILER_BASE_URL",
|
|
value = BuildTimeConfig.SERVICES_MAPTILER_BASE_URL ?: "https://api.maptiler.com/maps"
|
|
)
|
|
buildConfigFieldStr(
|
|
name = "MAPTILER_API_KEY",
|
|
value = if (isEnterpriseBuild) {
|
|
BuildTimeConfig.SERVICES_MAPTILER_APIKEY
|
|
} else {
|
|
System.getenv("ELEMENT_ANDROID_MAPTILER_API_KEY")
|
|
?: readLocalProperty("services.maptiler.apikey")
|
|
}
|
|
?: ""
|
|
)
|
|
buildConfigFieldStr(
|
|
name = "MAPTILER_LIGHT_MAP_ID",
|
|
value = if (isEnterpriseBuild) {
|
|
BuildTimeConfig.SERVICES_MAPTILER_LIGHT_MAPID
|
|
} else {
|
|
System.getenv("ELEMENT_ANDROID_MAPTILER_LIGHT_MAP_ID")
|
|
?: readLocalProperty("services.maptiler.lightMapId")
|
|
}
|
|
// fall back to maptiler's default light map.
|
|
?: "basic-v2"
|
|
)
|
|
buildConfigFieldStr(
|
|
name = "MAPTILER_DARK_MAP_ID",
|
|
value = if (isEnterpriseBuild) {
|
|
BuildTimeConfig.SERVICES_MAPTILER_DARK_MAPID
|
|
} else {
|
|
System.getenv("ELEMENT_ANDROID_MAPTILER_DARK_MAP_ID")
|
|
?: readLocalProperty("services.maptiler.darkMapId")
|
|
}
|
|
// fall back to maptiler's default dark map.
|
|
?: "basic-v2-dark"
|
|
)
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.libraries.architecture)
|
|
implementation(projects.libraries.designsystem)
|
|
implementation(projects.libraries.core)
|
|
implementation(projects.libraries.matrixui)
|
|
implementation(projects.libraries.uiStrings)
|
|
implementation(libs.coil.compose)
|
|
|
|
testImplementation(libs.test.junit)
|
|
testImplementation(libs.test.truth)
|
|
}
|