Submission to app store unable to find metadata.xml

Hi Rob, 

Thanks for getting back to me. I’ve changed the orientation but it’s still portrait. Does the config.lua above look ok?

This is how I usually add background images:

local background = display.newImage(“bbg.png”) 

localGroup:insert(background)

And I’ve been using 480x320 with the splash screen image “Default-568h-@2.png” though I realise that’s well out of date.

So what I need to do is scale up my images and specify the size as above?

With my other images, should I also specify the sizes required? i.e. text and buttons etc

Thanks!

Can you post the build.settings again after your changes?  The orientation should be pulled from what I gave you above.

If you do this:

local background = display.newImage("bbg.png")  localGroup:insert(background)

OK, here’s build.settings

settings = 

{

     orientation = {

                default = “landscapeRight”,

        supported = { “landscapeRight”, landscapeLeft” },

    }

           

    iphone = {

        plist = {

            UIStatusBarHidden=false,

            —-UIApplicationExitsOnSuspend = true,

            UIPrerenderedIcon = true,

            

            CFBundleIconFiles = { 

            “Icon-60.png”,

            “Icon-60@2x.png”,

            “Icon-Small-40.png”,

            “Icon-Small-40@2x.png”,

            “Icon.png”,

            “Icon@2x.png”,

            “Icon-Small.png”,

            “Icon-Small@2x.png”,

            },

        },

    },

}

settings = 

{

     orientation = {

                default = “landscapeRight”,

        supported = { “landscapeRight”, landscapeLeft” },

    },

           

    iphone = {

        plist = {

            UIStatusBarHidden=false,

            —-UIApplicationExitsOnSuspend = true,

            UIPrerenderedIcon = true,

            

            CFBundleIconFiles = { 

            “Icon-60.png”,

            “Icon-60@2x.png”,

            “Icon-Small-40.png”,

            “Icon-Small-40@2x.png”,

            “Icon.png”,

            “Icon@2x.png”,

            “Icon-Small.png”,

            “Icon-Small@2x.png”,

            },

        },

    },

}

You’re missing a comma at the end of the orientation block.

hmmmm, thanks Rob, I’ve added it but it’s still portrait in the top left hand corner.

Hate to be a pain…are there any other setting that I should check?

Have you adjusted your X, Y settings when creating objects to adjust for the Graphics 2.0 way of doing things?  Please read this:

http://docs.coronalabs.com/guide/graphics/migration.html

Thanks

Rob

Thank you!

When I had this issues I tried just going to the Application Loader and doing it that way but ended up with the following error:

[ERROR ITMS-9000: “The bundle ‘BUNDLE.com’ at bundle path ‘APPLICATION.app’ is not signed using an Apple submission certificate.” at SoftwareAssets/SoftwareAsset (MZItmspSoftwareAssetPackage)]

The distribution certificate not developer certificate was used. Thoughts? 

There are two types of distribution profiles:  AdHoc and for the Store.  You have to use a provisioning profile that combines your distribution certificate with the distribution profile.

Rob

When I had this issues I tried just going to the Application Loader and doing it that way but ended up with the following error:

[ERROR ITMS-9000: “The bundle ‘BUNDLE.com’ at bundle path ‘APPLICATION.app’ is not signed using an Apple submission certificate.” at SoftwareAssets/SoftwareAsset (MZItmspSoftwareAssetPackage)]

The distribution certificate not developer certificate was used. Thoughts? 

There are two types of distribution profiles:  AdHoc and for the Store.  You have to use a provisioning profile that combines your distribution certificate with the distribution profile.

Rob