when submitting, "rejected by the uploader"

since there wasw no response on the other thread, i will try here:

“Bundle IDs with dots are being replaced with - and being rejected by the uploader”

Hi, i have the same problem here, with build 828 :frowning:
i wanted to update my app to retina display support.

the error i get with a classic build: Bundle identifier: com-magicwhale-bagatelle differs from prior bundle identifier: com.magicwhale.bagatelle

So it’s Corona changing the . to - .

when i try to add CFBundleIdentifier = “com.magicwhale.bagatelle”, to my build.settings, i got another error telling me that the bundle ID is invalid:
the application-identifier entitlement is not formatted correctly; it should contain your 10-character App ID Seed, followed by a dot, followed by your bundle identifier: xxxxxxxxx.com.magicwhale.bagatelle (-19054)

i even tried to change the bundle id within the built, but then apple tells me it’s not a valid build (modified, not signed)

So, because i can’t change the bundleid of my app, i’m locked :frowning:

many people have old bundle ids with dots in it, can’t you just change it in the builds so that you are warned that you have invalid characters in your bundle id, but DON’T change them?

Howe the others have resolved this?
[import]uid: 44010 topic_id: 27262 reply_id: 327262[/import]

A few questions >

  1. What version of xcode do you have installed?
  2. Are you building with a distribution provisioning profile?
  3. Are you using the correct provisioning profile? [import]uid: 84637 topic_id: 27262 reply_id: 111160[/import]

1)i’m on lion, with xcode ver. 4.3.2

2)yes, the same that worked before

3)yes, i have separated profiles for testing and store

aparently everything works fine except that corona sdk change the dots in the name profile. (com.magicwhale.bagatelle)
and using Bundle identifier, i have the other error. [import]uid: 44010 topic_id: 27262 reply_id: 111163[/import]

I never specify a bundle ID in my build.settings. I let Corona take it from the provisioning profile.

I just sent an update of an app to Apple last night using 828 and there were no problems.

Make sure your provisioning profile is using an AppID and you’re not using the wildcard appID and let the system work for you.

I’ve not seen that problem before.
[import]uid: 19626 topic_id: 27262 reply_id: 111166[/import]

this problem was qith another daily build: http://developer.anscamobile.com/forum/2012/01/02/bundle-ids-dots-are-being-replaced-and-being-rejected-uploader

but there is no solution for it in this thread :frowning:

My provisioning profile is not a wildcard one, it’s just that it have dots in it. [import]uid: 44010 topic_id: 27262 reply_id: 111172[/import]

Can you post up your build.settings file please? Exactly as it is? [import]uid: 84637 topic_id: 27262 reply_id: 111362[/import]

that’s my build.settings:

[code]settings = {
orientation =
{
default = “portrait”,
content = “portrait”,
supported =
{
“portrait”,
},
},
iphone =
{
plist =
{
UIApplicationExitsOnSuspend = false ,
CFBundleDisplayName = “Bagatelle”,
UIPrerenderedIcon=“YES”,
UIStatusBarHidden=true,
CFBundleIconFile = “Icon.png”,
CFBundleIconFiles = {
“iTunesArtwork”,
“Icon.png” ,
“Icon@2x.png” ,
“Icon-72.png” ,
“Icon-Small.png” ,
“Icon-Small-50.png” ,
“Icon-Small@2x.png” ,
“iPadIcon@2x.png” ,
},

},
components = {}

},
}
[/code]
and when i add the cfbundle, i just add “CFBundleIdentifier = “com.magicwhale.bagatelle”,” [import]uid: 44010 topic_id: 27262 reply_id: 111462[/import]

still not working with the latest build :frowning:
can’t you just remove the forced replacement of dots with “-” in the bundle id?
everything works fine except for this… (the game works fine on device) [import]uid: 44010 topic_id: 27262 reply_id: 112149[/import]

problem resolved :slight_smile:
tried to create a new distribution profile, and it works like a charm :slight_smile: [import]uid: 44010 topic_id: 27262 reply_id: 112359[/import]

@r.pudlowski. Glad to hear you got it working. What exactly did you do? (might help others in this situation [import]uid: 84637 topic_id: 27262 reply_id: 112361[/import]

Danny-> i simply created a new distribution profile for the apple store on the apple dev website, and used the new one to build my version. [import]uid: 44010 topic_id: 27262 reply_id: 112367[/import]