Hello. When I call the camera or gallery from my App running on iOS 7, I’m getting this error:
\<Error\>: \*\*\* Terminating app due to uncaught exception 'UIApplicationInvalidInterfaceOrientation', reason: 'Supported orientations has no common orientation with the application, and shouldAutorotate is returning YES' \*\*\* First throw call stack: (0x2e43be8b 0x387356c7 0x2e43bdcd 0x30c3437d 0x30c3b4c5 0x30c3b47b 0x30c3a5b3 0x30bc0f3d 0x30bc0d19 0x30bc0609 0x30bc0467 0x30bcd153 0x30bccbd3 0x30c78f67 0x30c78d83 0x30c70df3 0x30c70279 0x30c6ffe9 0x30c6ff7d 0x30bc1533 0x30848f43 0x30844767 0x308445f9 0x3084400d 0x30843e1f 0x3083db4d 0x2e406f71 0x2e4048ff 0x2e404c4b 0x2e36f541 0x2e36f323 0x330a62eb 0x30c261e5 0xdf3f 0xdef8)
My config file orientation settings are these:
orientation =
{
default = “landscapeRight”,
content = “landscapeRight”,
supported = { “landscapeLeft”, “landscapeRight”, “portrait” },
},
and
plist =
{
UIInterfaceOrientation = “UIInterfaceOrientationLandscapeRight”,
UISupportedInterfaceOrientations =
{
“UIInterfaceOrientationLandscapeLeft”,
“UIInterfaceOrientationLandscapeRight”
},
I already tried several combinations with no solution.