mirror of
https://github.com/element-hq/element-x-ios.git
synced 2025-03-10 21:39:12 +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.
20 lines
748 B
Swift
20 lines
748 B
Swift
// swiftlint:disable all
|
|
// Generated using SwiftGen — https://github.com/SwiftGen/SwiftGen
|
|
|
|
import Foundation
|
|
|
|
// swiftlint:disable superfluous_disable_command
|
|
// swiftlint:disable file_length
|
|
|
|
// MARK: - YAML Files
|
|
|
|
// swiftlint:disable identifier_name line_length number_separator type_body_length
|
|
internal enum Secrets {
|
|
internal static let mapLibreAPIKey: String = "your_key"
|
|
internal static let postHogAPIKey: String = "your_key"
|
|
internal static let postHogHost: String = "https://posthog.localhost"
|
|
internal static let rageshakeServerURL: String = "https://rageshake.localhost"
|
|
internal static let sentryDSN: String = "https://sentry.localhost"
|
|
}
|
|
// swiftlint:enable identifier_name line_length number_separator type_body_length
|