Don't want the application to crash because of a force unwrap. Signed-off-by: kingbri <bdashore3@gmail.com>
27 lines
577 B
Swift
27 lines
577 B
Swift
//
|
|
// UIApplication.swift
|
|
// Ferrite
|
|
//
|
|
// Created by Brian Dashore on 7/26/22.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
// Extensions to get the version/build number for AboutView
|
|
extension UIApplication {
|
|
var appVersion: String {
|
|
Bundle.main.object(forInfoDictionaryKey: "CFBundleShortVersionString") as? String ?? "0.0.0"
|
|
}
|
|
|
|
var appBuild: String {
|
|
Bundle.main.object(forInfoDictionaryKey: "CFBundleVersion") as? String ?? "0"
|
|
}
|
|
|
|
var buildType: String {
|
|
#if DEBUG
|
|
return "Debug"
|
|
#else
|
|
return "Release"
|
|
#endif
|
|
}
|
|
}
|