21 lines
558 B
Swift
21 lines
558 B
Swift
//
|
|
// BuildSettings.swift
|
|
// ElementX
|
|
//
|
|
// Created by Ismail on 2.06.2022.
|
|
// Copyright © 2022 Element. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
final class BuildSettings {
|
|
|
|
// 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"
|
|
|
|
}
|