Skip to content

Instantly share code, notes, and snippets.

@walterlua
Last active August 29, 2015 14:05
Show Gist options
  • Save walterlua/75e29090abaca29a6510 to your computer and use it in GitHub Desktop.
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)
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",
"Icon@2x.png",
"Icon-60.png",
"Icon-60@2x.png",
"Icon-72.png",
"Icon-72@2x.png",
"Icon-76.png",
"Icon-76@2x.png",
"Icon-Small.png",
"Icon-Small@2x.png",
"Icon-Small-40.png",
"Icon-Small-40@2x.png",
"Icon-Small-50.png",
"Icon-Small-50@2x.png",
},
},
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment