I am creating an iOS app that will work only in landscape orientation. iPad apps that require an orientation must support both variants of that orientation.
I have these lines in my descriptor file:
<fullScreen>true</fullScreen>
<aspectRatio>landscape</aspectRatio>
<autoOrients>true</autoOrients>
However because I set autoOrients to true I also get the application show in portrait mode shrieked to fit - with white areas top and bottom.
if i set autoOrients to false it will play only the top right variant of the landscape orientation and not the other way around as well.
Any idea how to resolve this??