-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathBuildSettings.swift
38 lines (35 loc) · 1.35 KB
/
BuildSettings.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import Foundation
/// Manages global build settings.
///
/// The build settings work differently depending on the environment:
///
/// - **Live** – the code runs as part of an app or app extensions with build
/// settings configured using the `Info.plist` file.
/// - **Preview** – the code runs as part of the SwiftPM or Xcode target. In this
/// environment, the build settings have predefined values that can also be
/// changed at runtime.
/// - **Test** – `BuildSettings` are not available when running unit tests as
/// they are incompatible with parallelized tests and are generally not recommended.
public struct BuildSettings: Sendable {
public var brand: AppBrand
public var pushNotificationAppID: String
public var appGroupName: String
public var appKeychainAccessGroup: String
public var eventNamePrefix: String
public var explatPlatform: String
public var itunesAppID: String
public static var current: BuildSettings {
switch BuildSettingsEnvironment.current {
case .live:
return .live
case .preview:
return .preview
case .test:
fatalError("BuildSettings are unavailable when running unit tests. Make sure to inject the values manually in system under test.")
}
}
}
public enum AppBrand: String, Sendable {
case wordpress
case jetpack
}