- //
- // Bundle.swift
- // OmniBLE
- //
- // Created by Darin Krauss on 1/23/21.
- // Copyright © 2021 LoopKit Authors. All rights reserved.
- //
- import Foundation
- extension Bundle {
- var bundleDisplayName: String {
- return object(forInfoDictionaryKey: "CFBundleDisplayName") as! String
- }
- }
|