-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathBuildSettings.swift
35 lines (31 loc) · 1.1 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
import Foundation
/// Provides convenient access for values defined in Info.plist files for
/// apps and app extensions.
///
/// - warning: Most of these values exist only in Info.plist files for apps as
/// app extensions only need a tiny subset of these settings.
public enum BuildSettings {
public static var pushNotificationAppID: String {
infoPlistValue(forKey: "WPPushNotificationAppID")
}
public static var appGroupName: String {
infoPlistValue(forKey: "WPAppGroupName")
}
public static var appKeychainAccessGroup: String {
infoPlistValue(forKey: "WPAppKeychainAccessGroup")
}
}
private func infoPlistValue<T>(forKey key: String) -> T where T: LosslessStringConvertible {
guard let object = Bundle.main.object(forInfoDictionaryKey: key) else {
fatalError("missing value for key: \(key)")
}
switch object {
case let value as T:
return value
case let string as String:
guard let value = T(string) else { fallthrough }
return value
default:
fatalError("unexpected value: \(object) for key: \(key)")
}
}