3

I have generated a certificate and created a provisioning profile for my project so that I could make push notification in it, but when in Build Setting -> CodeSigning I write the name of provisioning profile and give my team name in General an error appears that AppName has conflicting provisioning settings.

How can I correct this?

The error looks like this

enter image description here

enter image description here

Blazej SLEBODA
  • 8,936
  • 7
  • 53
  • 93
siddle
  • 137
  • 2
  • 10
  • Possible duplicate of: https://stackoverflow.com/questions/47277940/distribution-profile-requesting-a-developer-certificate – biloshkurskyi.ss Nov 14 '17 at 09:12
  • Uncheck "Automatically manage signing", then check it again and reselect the Team. Xcode then fixed whatever was causing the issue on its own. – Lal Krishna Nov 14 '17 at 09:13
  • 1
    Possible duplicate of [Distribution Profile requesting a Developer certificate](https://stackoverflow.com/questions/47277940/distribution-profile-requesting-a-developer-certificate) – MechMK1 Nov 14 '17 at 09:38

4 Answers4

7

Just uncheck Automatically manage signing and check it again and select appropriate team.

Xcode will automatically fix the causing issue on its own.

Himanth
  • 2,381
  • 3
  • 28
  • 41
2

Goto Build Settings -> Signing

Set

  1. Code Signing Identity to IOS Developer (Automatic)
  2. Provisioning Profile to Automatic
  3. Provisioning Profile(Deprecated) to Automatic

Uncheck "Automatically manage signing", then check it again and reselect the Team.

Lal Krishna
  • 15,485
  • 6
  • 64
  • 84
2

In XCODE 10.X Provisioning profile has garbage values in Provisioning Profile while running for the first time.

Go to:

Project Target-- > Build Settings -> Double click on Provisioning Profile.

You will see e4abcdbdbacbcd-eercdcsdcvdede-xxxxxxxxxxxx like this, so you should delete that.

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

Please refer to this - it worked for me.

Provisioning profile Conflict

Shrikant Phadke
  • 358
  • 2
  • 11
1

Deselect automatically manage signing and select your provisioning profile in the respective field.

Francesco Deliro
  • 3,899
  • 2
  • 19
  • 24