mirror of
https://github.com/selfxyz/self.git
synced 2026-02-09 22:06:22 -05:00
22 lines
549 B
Swift
22 lines
549 B
Swift
//
|
|
// UIApplicationExt.swift
|
|
// NFCPassportReaderApp
|
|
//
|
|
// Created by Andy Qua on 20/01/2021.
|
|
// Copyright © 2021 Andy Qua. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
extension UIApplication {
|
|
static var release: String {
|
|
return Bundle.main.object(forInfoDictionaryKey: "CFBundleShortVersionString") as! String? ?? "x.x"
|
|
}
|
|
static var build: String {
|
|
return Bundle.main.object(forInfoDictionaryKey: "CFBundleVersion") as! String? ?? "x"
|
|
}
|
|
static var version: String {
|
|
return "\(release).\(build)"
|
|
}
|
|
}
|