tokenary/Encrypted Ink/Extensions/Bundle.swift

20 lines
437 B
Swift
Raw Normal View History

2021-06-16 20:51:53 +03:00
// Copyright © 2021 Encrypted Ink. All rights reserved.
import Foundation
extension Bundle {
var identifier: String {
return infoDictionary?["CFBundleIdentifier"] as? String ?? ""
}
var name: String {
return infoDictionary?["CFBundleName"] as? String ?? ""
}
var shortVersionString: String {
return infoDictionary?["CFBundleShortVersionString"] as? String ?? ""
}
}