blockchainethereumblockchain-walleterc20erc721walletxdaidappdecentralizederc1155erc875iosswifttokens
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
695 B
31 lines
695 B
7 years ago
|
// Copyright SIX DAY LLC. All rights reserved.
|
||
7 years ago
|
|
||
|
import Foundation
|
||
|
|
||
|
extension Bundle {
|
||
|
var versionNumber: String? {
|
||
|
return infoDictionary?["CFBundleShortVersionString"] as? String
|
||
|
}
|
||
|
var buildNumber: String? {
|
||
|
return infoDictionary?["CFBundleVersion"] as? String
|
||
|
}
|
||
7 years ago
|
|
||
|
var buildNumberInt: Int {
|
||
|
return Int(Bundle.main.buildNumber ?? "-1") ?? -1
|
||
|
}
|
||
7 years ago
|
|
||
|
var fullVersion: String {
|
||
|
let versionNumber = Bundle.main.versionNumber ?? ""
|
||
|
let buildNumber = Bundle.main.buildNumber ?? ""
|
||
|
return "\(versionNumber) (\(buildNumber))"
|
||
|
}
|
||
7 years ago
|
}
|
||
7 years ago
|
|
||
7 years ago
|
var isDebug: Bool {
|
||
7 years ago
|
#if DEBUG
|
||
|
return true
|
||
|
#else
|
||
|
return false
|
||
|
#endif
|
||
|
}
|