Simple (probably) build.settings question

I have a very simple iPad only app that I am trying to submit. It was rejected because I did not have my app set up to show landscape and landscapeupside down.

“Specifically, we noticed your app only supported the top-left variant of the landscape orientation, but not the top-right variant.”

The problem is that I am having issues getting it to build the way they want it even though I am sure this is a very simple fix. Here is my existing build.settings file. What exactly should it look like to get it to pass Apple’s standards? As I said, when I try what I think should be correct it fails to build or does something strange when testing it.

I know the code below says portrait, and it is supposed to. So in reality I guess I need to display in portrait and portrait upside down.

In case you can’t tell, I am a total noob at this…

[code]
settings =
{
orientation =
{
default = “portrait”,
},

iphone =
{
plist =
{
CFBundleIdentifier = “com.musicedmagic.carolsclarinet”,
CFBundleDisplayName = “Christmas Carols For Clarinet”,
},
},
}[/code] [import]uid: 96410 topic_id: 18061 reply_id: 318061[/import]

try looking at this link
http://developer.anscamobile.com/content/configuring-projects

settings =  
{  
 orientation =  
 {  
 default = "portrait",  
 supported =  
 {  
 "portrait", "portraitUpsideDown", "landscapeRight", "landscapeLeft"  
 }  
 },  

[import]uid: 89663 topic_id: 18061 reply_id: 69036[/import]

sorry that sounded a little rude, wasn’t meant to be. trying to be helpful good luck :slight_smile: [import]uid: 89663 topic_id: 18061 reply_id: 69043[/import]

I didn’t take it as rude. :slight_smile:

I actually have been using that page as a reference but the stuff I tried has not worked. As I said, I am completely new to this and only got into it because there were no apps available that could do what I wanted.

Even after reading that document and playing around with various iterations of it the app still does not auto-rotate from portrait to portraitupsidedown. Here is the revised code I was using that did not work:

[code]
settings =
{
orientation =
{
default = “portrait”,
supported =
{
“portrait”, “portraitUpsideDown”,
},
},

iphone =
{
plist =
{
CFBundleIdentifier = “com.musicedmagic.carolsclarinet”,
CFBundleDisplayName = “Christmas Carols For Clarinet”,
},
},
}[/code]

Am I missing something? Why would this not work correctly? [import]uid: 96410 topic_id: 18061 reply_id: 69047[/import]

try this

settings =  
{  
 orientation =  
 {  
 default = "portrait",  
 supported =  
 {  
 "portrait", "portraitUpsideDown",  
 },  
 },  
   
 iphone =  
 {  
 plist =  
 {  
UIInterfaceOrientation = "UIInterfaceOrientationPortrait",  
   
 UISupportedInterfaceOrientations =  
 {  
 "UIInterfaceOrientationPortrait",  
 "UIInterfaceOrientationPortraitUpsideDown"  
 },  
 CFBundleIdentifier = "com.musicedmagic.carolsclarinet",  
 CFBundleDisplayName = "Christmas Carols For Clarinet",  
 },  
 },  
}  

i am not sure i understand exactly what you want, but try this. [import]uid: 89663 topic_id: 18061 reply_id: 69053[/import]

@criswell - so did this work for your APP ? was it approved on the app store ?
i wanted to do the same but default was going to be landscape. [import]uid: 11094 topic_id: 18061 reply_id: 77815[/import]

sorry for the very late response.

i have know idea if it works or not, but as soon as i know i will let you know. cheers :slight_smile: [import]uid: 89663 topic_id: 18061 reply_id: 98035[/import]