Android won't default to landscape

Hi,

My android app will not default to landscape mode.  I am running the latest Corona build; below is my build.settings file. Any suggestions? Thanks.


– For more information on build.settings, see the Project Build Settings guide at:
https://docs.coronalabs.com/guide/distribution/buildSettings

settings =
{
    orientation =
    {
        – Supported values for orientation:
        – portrait, portraitUpsideDown, landscapeLeft, landscapeRight
        default = “landscapeRight”,
        supported = { “landscapeLeft”, “landscapeRight” },
    },

    –
    – Android section
    –
    android =
    {
        usesPermissions =
        {
            “android.permission.INTERNET”,
        },
    },

    –
    – iOS section
    –
    iphone =
    {
        xcassets = “Images.xcassets”,
        plist =
        {
            UIStatusBarHidden = false,
            UILaunchStoryboardName = “LaunchScreen”,
        },
    },

    –
    – Plugins section
    –
    plugins =
    {
        [“plugin.wrapper”] =
            { publisherId = “it.eaze”}
    },

    –
    – Project section
    –
    excludeFiles =
    {
        – Exclude unnecessary files for each platform
        all = { “Icon.png”, “Icon-*dpi.png”, “Images.xcassets”, },
        android = { “LaunchScreen.storyboardc”, },
    },
}
 

Does your device by any chance have orientation lock on?

Rob