mirror of
https://github.com/element-hq/element-x-ios.git
synced 2025-03-10 13:37:11 +00:00

* Bump the version for the next release. * Ignore all generated sources. * Use Pkl+XcodeGen to inject secrets instead of the project. * Inject the PostHog/Sentry/Rageshake configuration from the environment. * Fix bad unicode. * Fix unit tests.
18 lines
446 B
Plaintext
18 lines
446 B
Plaintext
//
|
|
// Copyright 2025 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.
|
|
//
|
|
|
|
// Analytics and Diagnostics
|
|
|
|
sentryDSN = read("env:SENTRY_DSN")
|
|
postHogHost = read("env:POSTHOG_HOST")
|
|
postHogAPIKey = read("env:POSTHOG_API_KEY")
|
|
rageshakeServerURL = read("env:RAGESHAKE_SERVER_URL")
|
|
|
|
// Maps
|
|
|
|
mapLibreAPIKey = read("env:MAPLIBRE_API_KEY")
|