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.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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"
                },
}

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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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
                },
        }     
}

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

Peach ;)

views:1514 update:2011/11/17 9:28:17
corona forums © 2003-2011