Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Profile doesn't match application identifier

I have just created a AdHoc distribution provisioning profile for the app id 49776ZQRBG.com.gfeed.ride I have the Bundle ID in the info.plist set to this, yet this provisining profile in the project settings is greyed out and states

"profile doesn't match application identifier '49776ZQRBG.com.gfeed.ride'"

If I look at the profile in the organizer within XCode it gives me the same App Identifier as whats in my plist.

Is there something else I am missing? Is the application identifier different to the bundle identifier?

like image 451
user84124 Avatar asked May 12 '09 15:05

user84124


People also ask

How do you set Get task allow?

get-task-allow, when signed into an application, allows other processes (like the debugger) to attach to your app. Distribution profiles require that this value be turned off, while development profiles require this value to be turned on (otherwise Xcode would never be able to launch and attach to your app).

How do I create a provisioning profile in keychain?

Upload keychain and provisioning profile files sectionClick on "Choose File" and select the keychain or provisioning profile file. 2. Click on "Upload". The keychain or provisioning profile file is automatically uploaded and stored on the jenkins.

How do I select a profile in Xcode?

Select Xcode > Preferences from the navigation bar. At the top of the window select Accounts . Select your Apple ID and your team, then select Download Manual Profiles . Go to ~/Library/MobileDevice/Provisioning Profiles/ and your profiles should be there.


2 Answers

Usually you would use just "com.gfeed.ride" as your identifier, and XCode will automatically take care of the "49776ZQRBG" part.

like image 136
Chris Lundie Avatar answered Oct 13 '22 11:10

Chris Lundie


When I got this error here is what I missed and corrected.

  1. Check that you have your Entitlements.plist file created and configured.
  2. Check info.plist and ensure that your application name is correct.

It's probably best to just go through the directions off of the iPhone dev site on apple. Same place you created your provision profiles.

Edit: Came across this on another post on this site. It's a link with more complete instructions than I have time to type.

http://furbo.org/2008/08/06/beta-testing-on-iphone-20/

like image 29
OhioDude Avatar answered Oct 13 '22 09:10

OhioDude