Icon - can you lend a chap a hand

Can’t get my icon to show on my iPad 2.  I have kept the build.settings file very slim just to have some success - but still not getting there.

I’m using a 72x72 pixel image labelled Icon.png which is in a folder called “images” within the directory folder.

(using Version 2014.2189 (2014.3.6) of the free version of the SDK)  (Does the free version allow for icons?)

and these settings in build.settings  

[lua]

settings = 

{

    orientation = 

    {

        default = “landscapeRight”,

        supported = 

        {

            “landscapeLeft”, “landscapeRight”

        },

        ipad = 

        {

            plist =

            {

                CFBundleIconFile = “images/Icon.png”,

                

            },

        },                    

    },

}

[/lua]

This finally worked based on an older thread by Rob

[lua]

settings =

{

    iphone =

    {

        plist=

        {

            UIInterfaceOrientation = “UIInterfaceOrientationLandscapeRight”,

            UISupportedInterfaceOrientations =

            {

                “UIInterfaceOrientationLandscapeRight”,

                “UIInterfaceOrientationLandscapeLeft”

            },

            CoronaUseIOS6LandscapeOnlyWorkaround = true,

            MinimumOSVersion=“4.3”,

            UIApplicationExitsOnSuspend = false,

            UIPrerenderedIcon=false,

            UIStatusBarHidden=true,

            CFBundleIconFile = “images/Icon.png”,

            CFBundleIconFiles = {

                “images/Icon.png” , 

                “images/Icon-72@2x.png” , 

                “images/Icon-72.png” , 

                “images/Icon-Small-50.png”,

                “images/Icon-Small-50@2x.png”, 

                “images/Icon-Small.png” , 

                “images/Icon-Small@2x.png”

            },

            

            

        },

    },

    

    orientation =

    {

        default = “landscapeRight”,

        supported = { “landscapeRight”, “landscapeLeft” },

    },

}

[/lua]

This finally worked based on an older thread by Rob

[lua]

settings =

{

    iphone =

    {

        plist=

        {

            UIInterfaceOrientation = “UIInterfaceOrientationLandscapeRight”,

            UISupportedInterfaceOrientations =

            {

                “UIInterfaceOrientationLandscapeRight”,

                “UIInterfaceOrientationLandscapeLeft”

            },

            CoronaUseIOS6LandscapeOnlyWorkaround = true,

            MinimumOSVersion=“4.3”,

            UIApplicationExitsOnSuspend = false,

            UIPrerenderedIcon=false,

            UIStatusBarHidden=true,

            CFBundleIconFile = “images/Icon.png”,

            CFBundleIconFiles = {

                “images/Icon.png” , 

                “images/Icon-72@2x.png” , 

                “images/Icon-72.png” , 

                “images/Icon-Small-50.png”,

                “images/Icon-Small-50@2x.png”, 

                “images/Icon-Small.png” , 

                “images/Icon-Small@2x.png”

            },

            

            

        },

    },

    

    orientation =

    {

        default = “landscapeRight”,

        supported = { “landscapeRight”, “landscapeLeft” },

    },

}

[/lua]