Skip to content

Instantly share code, notes, and snippets.

@iAmrSalman
Created November 8, 2017 08:52
Show Gist options
  • Save iAmrSalman/6bfdc488ad153f26e5cf8fba33d5ed64 to your computer and use it in GitHub Desktop.
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
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