tags:

views:

1706

answers:

2

I created the App Id in the Apple development program and follow the instructions in apple document.

My App Id is xxxxxxxxxx.com.companyname.appname. In my project's info.plist, i change the bundle identifier from com.yourcompany.${PRODUCT_NAME:rfc1034identifier} to com.companyname.appname. When i tried to run the application in my iphone, i got this error "Failed to upload application_name.app.

Anyone know how to solve this issue?

+2  A: 

Build and Upload in Release - active configuration

sakrist
+2  A: 

Citing Apples Technical Note TN2242:

"The Bundle Identifier (and App ID) is an example of a "Uniform Type Identifier" (UTI), so you can only use valid UTI characters for your Bundle Identifier. In particular, you can't use spaces or underscores."

The UIT character set is described here on Apples developer site.

Niels Castle