Created
August 31, 2018 01:07
-
-
Save EJunWhite/5d7cef2dae192fd988deefce8a5e11bd to your computer and use it in GitHub Desktop.
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
let CFBundleShortVersionString = Bundle.main.infoDictionary!["CFBundleShortVersionString"] as? String | |
let CFBundleVersion = Bundle.main.infoDictionary!["CFBundleVersion"] as? String | |
let CFBundleName = Bundle.main.infoDictionary!["CFBundleName"] as? String | |
print("Application Version Number: \(CFBundleShortVersionString)") | |
print("Application Build Number : \(CFBundleVersion)") | |
print("Application Name : \(CFBundleName)") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment