개발자 블로그

Xcode-has conflicting provisioning settings. Solve 본문

프로그래밍/iOS-SWIFT

Xcode-has conflicting provisioning settings. Solve

로이드.Roid 2021. 2. 18. 12:26

Initially, it was a project that did not use "Automatically manage signing". Then, while working on another project recently, I realized that "Automatically manage sigining" is convenient, and I tried to change the existing manual signing to Automatic, so an error occurred.

TheThe contents of the error are as follows.

After selecting Team, "(AppName) has conflicting provisioning settings." is displayed and "Automatically signed, but  provisioning profile Automatic has been manually specified." A detailed message is displayed. It informs you to change the provisioning profile value to "Automatic".

So, I changed the value of PROVISIONING_PROFILE to "Automatic". And when I come back...

The error message keeps floating. Obviously I did what the Xcode told me to do.. :(

The solution is to just delete the "PROVISIONING_PROFILE" key itself as in the image above. You can delete it by pressing the Delete key while selecting the key. If I delete that key and come back,

The error disappears as in the image above. Solve problems neatly. I checked everything up to normal distribution in the app store. It's convenient because I don't have to choose a provisioning profile every time I deploy.

Comments