Post Your build.settings to Help Me!

I was wondering what everyone’s looks like. Mine currently looks like this, but I think I’m going to make it only support landscape. I’m sure I’ll learn how after seeing you guys post some of yours.
[lua]settings =
{
orientation =
{
default = “portrait”,
supported = {“portrait”},
},

iphone =
{
plist =
{
CFBundleIconFile = “Icon.png”,
CFBundleIconFiles =
{
“Icon.png”,
“Icon@2x.png”,
“Icon-72.png”,
},
},
},

android =
{
versionCode = “1”
versionName = “1.0”
},
}[/lua]
Anyways, what does yours look like? [import]uid: 103624 topic_id: 17680 reply_id: 317680[/import]

Since you’re asking, here’s my last landscape one;

[lua]settings =
{
orientation =
{
default = “landscapeRight”,
supported =
{
“landscapeRight”, “landscapeLeft”
},
},

iphone =
{
plist =
{
CFBundleIconFile = “Icon.png”,
CFBundleIconFiles =
{
“Icon.png”,
“Icon@2x.png”,
“Icon-72.png”
},
UIStatusBarHidden=true,
UIPrerenderedIcon = true
},
}
}[/lua] [import]uid: 52491 topic_id: 17680 reply_id: 67378[/import]

Sorry it’s displaying all out of whack - it is neat in the file, I swear!

Peach :wink: [import]uid: 52491 topic_id: 17680 reply_id: 67379[/import]