HI,
I’m working on an iPad version of an app that uses the access to photos and camera.
If I have only landscape orientations supported - the app crashes (on iOS6+, iOS5 is fine). So I need to add the following to my build.settings file:
orientation = { default = "landscapeRight", supported = { "landscapeLeft", "landscapeRight", "portrait" }, content = "landscapeRight", }
But then I’m locked to only one orientation - and while it’s acceptable on the iPhone (but, then, why do that?), on the iPad it’s considered a bad UX practice - and I can totally understand that.
Is there any way to fix the crashing behaviour without locking myself to only one orientation? AFAIK the “content” attribute doesn’t support a table value?