Revision control
Copy as Markdown
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
import Foundation
import UIKit
protocol AppConfig {
// var adjustFile: String { get }
// var firefoxAppStoreURL: URL { get }
var productName: String { get }
var supportPath: String { get }
var appId: String { get }
var wordmark: UIImage { get }
}
struct FocusAppConfig: AppConfig {
// let adjustFile = "Adjust-Focus"
let productName = "Focus"
let supportPath = "kb/focus"
let appId = "1055677337"
let wordmark = #imageLiteral(resourceName: "img_focus_wordmark")
}
struct KlarAppConfig: AppConfig {
// let adjustFile = "Adjust-Klar"
let productName = "Klar"
let supportPath = "products/klar"
let appId = "1073435754"
let wordmark = #imageLiteral(resourceName: "img_klar_wordmark")
}