* Update SDK package to 1.0.12-alpha. * Use an app group for storage and stop stripping the http from the homeserver when configuring the service. * Rename access token to restore token. * Remove matrix.org server description inline with latest FTUE changes.
35 lines
912 B
Swift
35 lines
912 B
Swift
//
|
|
// BuildSettings.swift
|
|
// ElementX
|
|
//
|
|
// Created by Ismail on 2.06.2022.
|
|
// Copyright © 2022 Element. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
final class BuildSettings {
|
|
// MARK: - Servers
|
|
|
|
static let defaultHomeserverAddress = "matrix.org"
|
|
|
|
// MARK: - Bug report
|
|
|
|
static let bugReportServiceBaseUrlString = "https://riot.im/bugreports"
|
|
static let bugReportSentryEndpoint = "https://f39ac49e97714316965b777d9f3d6cd8@sentry.tools.element.io/44"
|
|
// Use the name allocated by the bug report server
|
|
static let bugReportApplicationId = "riot-ios"
|
|
static let bugReportUISIId = "element-auto-uisi"
|
|
|
|
static let bugReportGHLabels = ["Element-X"]
|
|
|
|
// MARK: - Settings screen
|
|
|
|
static let settingsCrashButtonVisible = true
|
|
static let settingsShowTimelineStyle = true
|
|
|
|
// MARK: - Room screen
|
|
|
|
static let defaultRoomTimelineStyle: TimelineStyle = .bubbles
|
|
}
|