Last active
August 29, 2015 14:05
-
-
Save walterlua/75e29090abaca29a6510 to your computer and use it in GitHub Desktop.
Updated build.settings to show how to satisfy Apple's new plist requirement of "CFBundleShortVersionString" for app submission (based on Corona's HelloWorld sample)
This file contains 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
settings = | |
{ | |
orientation = | |
{ | |
default = "portrait", | |
supported = { "portrait" } | |
}, | |
iphone = | |
{ | |
plist = | |
{ | |
-- NEW APP REQUIREMENT BY APPLE | |
-- Don't forget to change the "1.0" to match your actual version! | |
CFBundleShortVersionString = "1.0", | |
CFBundleIconFile = "Icon.png", | |
CFBundleIconFiles = | |
{ | |
"Icon.png", | |
"[email protected]", | |
"Icon-60.png", | |
"[email protected]", | |
"Icon-72.png", | |
"[email protected]", | |
"Icon-76.png", | |
"[email protected]", | |
"Icon-Small.png", | |
"[email protected]", | |
"Icon-Small-40.png", | |
"[email protected]", | |
"Icon-Small-50.png", | |
"[email protected]", | |
}, | |
}, | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment