Not sure why, but received notice that my app was rejected because of the following:
We were unable to complete your review because we could not install your app on a device.
The UIRequiredDeviceCapabilities key in the Info.plist is set in such a way that the app will not install on an iPhone 5 or iPad 3rd Gen.
Please ensure that the app’s UIRequiredDeviceCapabilities key configuration is correct. Attributes should only be placed in the UIRequiredDeviceCapabilities key if the attribute is either required for the function of the application or if it must not be present on the device.
Interestingly, I have no specific UIRequiredDeviceCapabilities keys in my build.settings file…
[lua]
iphone =
{
plist=
{
UIInterfaceOrientation = “UIInterfaceOrientationLandscapeRight”,
UISupportedInterfaceOrientations =
{
“UIInterfaceOrientationLandscapeRight”,
“UIInterfaceOrientationLandscapeLeft”
},
CoronaUseIOS6LandscapeOnlyWorkaround = true,
MinimumOSVersion=“4.3”,
UIApplicationExitsOnSuspend = false,
UIPrerenderedIcon=true,
UIStatusBarHidden=true,
CFBundleIconFile = “Icon.png”,
CFBundleIconFiles = {
“Icon.png” ,
“Icon@2x.png” ,
“Icon-72.png” ,
“Icon-Small-50.png”,
“Icon-Small-50@2x.png”,
“Icon-Small.png” ,
“Icon-Small@2x.png”
},
UIAppFonts =
{
“ltromatic.ttf”,
},
},
},
[/lua]
Any suggestions on where I should turn next? Thanks in advance!