Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how do I resolve the error 'app' has conflicting provisioning settings. "app" has automatically signed,

I'm trying to build my app on a physical device. Each time I try to build I get the following error. I've tried clicking and unclicking 'Automatically manage signing, which results in Signing for 'app'requires a development team. When I add my company's address/id I get the error message about conflicting provision settings.

Here is the error message I get enter image description here

I should add that I inherited this project from another developer and that I was given the company's developer's id/password.

Here is the updated build settings page with provisioning profile set to automatic.

enter image description here

like image 409
VK1 Avatar asked Sep 04 '25 03:09

VK1


2 Answers

This worked perfectly for me.

Step 1:

Select the Project Target-- > Build Settings. Search PROVISIONING_PROFILE and delete.

Step 2:

Uncheck "Automatically manage signing", then check it again and reselect the Team. Xcode then fix whatever was causing the issue on its own.

Give a try :)

like image 63
Muthuraj M Avatar answered Sep 06 '25 09:09

Muthuraj M


You need to switch to the Build Settings tab (as specified in the error). In the Build Settings tab, you will find a setting where you can specify the Provisioning Profile for the build in the Signing section. It appears you have specified a provisioning profile on your device, it is conflicting with the profile in the company account. Change that setting to automatic (as it states in the error) and the error should go away.

enter image description here

like image 45
wottle Avatar answered Sep 06 '25 08:09

wottle