Skip to content

Instantly share code, notes, and snippets.

@ra9r
Last active October 15, 2023 12:17
Show Gist options
  • Save ra9r/9022c247a5c0b44d2fb116b5f15e66d8 to your computer and use it in GitHub Desktop.
Save ra9r/9022c247a5c0b44d2fb116b5f15e66d8 to your computer and use it in GitHub Desktop.
How to access the Info.plist values from Swift
let appBuildNumber = Bundle.main.object(forInfoDictionaryKey: "App_build_number") as? String
let appVersionNumber = Bundle.main.object(forInfoDictionaryKey: "App_version_number") as? String
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment