I need build.settings help / pointers

I am working on a app that i want to always run in a Landscape mode. I have this working just fine in the build.settings file.

I need some help though in getting it so that it works in a landscape mode when its either RightSideUp or RightSideDown or… however i should say this.

So what do i need to put in my build.settings to make it work for Android and IOS so no matter which Landscape mode a person is holding the device in, it will allow for it. right now what i have will let you hold the game upside down…

[lua]settings =
{
android =
{

},
orientation =
{
default = “landscape”,
supported =
{
“landscape”,
},

},

iphone =
{
plist =
{
CFBundleIconFile = “Icon.png”,
CFBundleDisplayName = “AppName”,
CFBundleIconFiles = {
“Icon.png”,
“Icon@2x.png”,
“Icon-72.png”,
},
},
}
}[/lua] [import]uid: 67604 topic_id: 21638 reply_id: 321638[/import]

Hey rgleason!

This is what I use -

orientation =  
 {  
 default ="landscapeRight",  
 content = "landscapeRight",  
 supported =  
 {  
 "landscapeRight"  
 },  
 },  

I think you can only use landscapeRight if you go cross platform.

Also keep in mind that on Android you can’t control the orientation of the loading screen until the app actually starts and runs your code. it is handled by the operating system / hardware and not by the app.
[import]uid: 13553 topic_id: 21638 reply_id: 85813[/import]

 orientation = {  
 default = "landscapeRight",  
 supported = { "landscapeRight", "landscapeLeft" }  
 },  

Try that! [import]uid: 19626 topic_id: 21638 reply_id: 85815[/import]