in PoC/iOS/Bluetooth Tracing PoC/Sources/Property Wrappers/PredefinedIdentifier.swift [39:48]
init(_ key: Key) {
guard let path = Bundle.main.path(forResource: "Info", ofType: "plist"),
let properties = NSDictionary(contentsOfFile: path) as? [String: Any],
let value = properties[key.rawValue] as? String else {
preconditionFailure("Failed to load identifier")
}
identifier = value
}