Updating an App That Was Originally Made With Xcode

Is there any way that I can update my applications that I originally made with Xcode with a Corona Version of my app? Currently when I attempt to provide the updated binary it says that the bundle identifier has changed since the previous version. I am using the same AppID but a different provisioning profile.

Thanks, Joey [import]uid: 3325 topic_id: 1475 reply_id: 301475[/import]

You most likely need to use the same provisioning profile as the original app.

Do you still have it? [import]uid: 3 topic_id: 1475 reply_id: 4173[/import]

Unfortunately I Don’t have the same Provisioning Profile but it is appearing in the Xcode Organizer properly so there shouldn’t be a problem. The error I am getting in the Application Loader is “Bundle identifier: com.awesomeware14.uFailLite differs from prior bundle identifier: XXXXXXXXXX.com.amesomeware14.uFailLite”. What appears to be the problem to me is that the Corona SDK builder is not including the ten-digit App ID in the bundle identifier. Any ideas? [import]uid: 3325 topic_id: 1475 reply_id: 4258[/import]

Hm, is there a way you can send some more info to us at support at anscamobile dot com so we can take a look? [import]uid: 54 topic_id: 1475 reply_id: 4447[/import]

Ya I’ll send you any information you need, just let me know what information you guys need to get this fixed. All I can really tell you know is that I am using the correct Provisioning Profile however the way the Corona Builder seems to build the Bundle Identifier is excluding the 10-digit App ID. However uploading a new application does not seem to have any problems. Please let me know if you need anymore information. [import]uid: 3325 topic_id: 1475 reply_id: 4448[/import]

Bundle id’s do not include the 10 character string; it’s actually used as a prefix for the AppID. Here’s the excerpt from Apple’s “iPhone Provisioning Portal”:

An App ID is the combination of a unique ten character string called the “Bundle Seed ID” and a traditional CF Bundle ID (or Bundle Identifier).

When you created your XCode project, you may have accidentally inserted the 10 char string into the Info.plist as part of your bundle id. As a result, the iTunes store recorded the wrong bundle id (which does not include the 10 char prefix).

One thing to try is to go to apple’s site and create a new AppID where you specify “XXXXXXXXXX.com.amesomeware14.uFailLite” as the bundle id. Your resulting AppID will look like:

xxxxxxxxxx.XXXXXXXXXX.com.amesomeware14.uFailLite where “xxxxxxxxxx” is some new seed id generated by apple’s site and “XXXXXXXXXX” is your seed id from your prior AppID.
[import]uid: 26 topic_id: 1475 reply_id: 4568[/import]

See now that sounds very possible. If only I could contact Apple and have it changed. Alright, well thank you for the help. [import]uid: 3325 topic_id: 1475 reply_id: 4580[/import]