Skip to content

Instantly share code, notes, and snippets.

@foxicode
Created August 10, 2020 12:19
Show Gist options
  • Select an option

  • Save foxicode/934cd7180301a7d503aa36e2945e13f1 to your computer and use it in GitHub Desktop.

Select an option

Save foxicode/934cd7180301a7d503aa36e2945e13f1 to your computer and use it in GitHub Desktop.
Getting app version from app bundle
import Foundation
extension Bundle {
var appVersion: String? {
self.infoDictionary?["CFBundleShortVersionString"] as? String
}
static var mainAppVersion: String? {
Bundle.main.appVersion
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment