Correct me if I am wrong but when specifying UIRequiredDeviceCapabilities in your build.settings, shouldn’t they come as a table?
plist = {
UIRequiredDeviceCapabilities = {"telephony", "wifi", "sms", "camera-flash"},
}
-- And not like this
plist = {
UIRequiredDeviceCapabilities = "telephony",
UIRequiredDeviceCapabilities = "sms",
UIRequiredDeviceCapabilities = "wifi",
UIRequiredDeviceCapabilities = "camera-flash"
}
When I don’t put the Capabilities in a table, xcode throw a silent error and prohibit me from installing on any device(iphone4 5.1.1, iphone5 6.0.1, ipad3 6.0.1). I’m on CPM 3.0.5 (11)
Btw, is there an update coming for iPhone5 support in project settings? [import]uid: 13560 topic_id: 34169 reply_id: 334169[/import]