Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Code Sign error: Provisioning profile does not match bundle identifier

Tags:

xcode

ios

jenkins

i'm getting below error while building, Can you please help me on this.

Check dependencies Code Sign error: Provisioning profile does not match bundle identifier: The provisioning profile specified in your build settings (“EXAMPLE test - Open”) has an AppID of “com.test.example” which does not match your bundle identifier “com.test.exampleTests”. CodeSign error: code signing is required for product type 'Unit Test Bundle' in SDK 'iOS 8.3'

like image 310
kirthan shetty Avatar asked Jul 21 '15 08:07

kirthan shetty


2 Answers

Change your Bundle ID to com.test.example in the info.plist file. Or else create a new provisioning profile , with the app id com.test.exampleTests. After doing one from the above, clean the project and rebuild it.

like image 144
Sujith Chandran Avatar answered Oct 10 '22 09:10

Sujith Chandran


It seems like you have changed the bundle id of your project to com.test.example, go to exampleTestsTests target and change the bundle id there as well to resolve the issue.

like image 44
Milan Agarwal Avatar answered Oct 10 '22 11:10

Milan Agarwal