Created
November 8, 2017 08:52
-
-
Save iAmrSalman/6bfdc488ad153f26e5cf8fba33d5ed64 to your computer and use it in GitHub Desktop.
[App Version & Build number] get the current build information from info.plist #swift3 #info.plist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extension Bundle { | |
var releaseVersionNumber: String? { | |
return infoDictionary?["CFBundleShortVersionString"] as? String | |
} | |
var buildVersionNumber: String? { | |
return infoDictionary?["CFBundleVersion"] as? String | |
} | |
} | |
Bundle.main.releaseVersionNumber | |
Bundle.main.buildVersionNumber |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment