tokenary/Encrypted Ink/Extensions/Bundle.swift
2021-06-19 21:20:42 +03:00

20 lines
437 B
Swift

// 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 ?? ""
}
}