
Hi, can anyone tell me what is the profile doesn't match application identifier error in XCode?
Thanks.

"Profile doesn't match application" this type of error generally occurs when there is no valid profile id is selected.
or you are building the application against wrong profile.
To fix such kind of error ..just follow the given steps.
1) Open the "Info.plist" file and there edit the "Bundle identifier" for example intend of
com.yourcompany.${PRODUCT_NAME:rfc1034identifier}
you need to write your provisioning profile name? lets say it RoseIndia. then it should be like
com.RoseIndia.${PRODUCT_NAME:rfc1034identifier}
com is optional you can remove this also.
2) Edit the Code Sign in - to edit the code sing in ..just right click on the project icon that is the top most icon in left window of XCode and select the "Get info".
There you search for "code sign" and select your valid profile there.
Now save and run the application. It should work.