Xcode has conflicting provisioning settings

前端 未结 8 1545
不思量自难忘°
不思量自难忘° 2021-02-01 17:09

I have an Ionic 2 app, which builds and is testable in Xcode 8.2.1 Simulator environment, e.g. iPhone7 (Build Successful).

<
相关标签:
8条回答
  • 2021-02-01 17:40

    Project Target -> Build Settings -> Code Signing Identity -> Change the Debug and Release to iOS Developer and iOS Distribution.

    0 讨论(0)
  • 2021-02-01 17:42

    This worked perfectly for me. Give a try :)

    Step 1:

    Select the Project Target-- > Build Settings. Search PROVISIONING_PROFILE and delete whatever nonsense is there.

    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.

    0 讨论(0)
  • 2021-02-01 17:45

    UPDATE Just figured out the real issue [assuming that your app has the correct provisioning profiles, but a target for your app does not]: Navigate to your target and change the provisioning profile there. See below:


    I got this error when I added a target to enable rich push notifications. The project/workspace, "Spontit" did not have this error but the target "RichNotification" did.

    I tried several things, and the last thing I did, that seemed to be responsible for it finally working, was:

    • Un-add and re-add the embedded binary for the target "RichNotification" in the "General" tab of the project, "Spontit".

    • Another thing to check is to make sure that it is added as a "Target Dependency" in the "Build Phases" tab.

    • For this particular problem, make sure to clean your project (Cmd Shift K) before building it, every time. Otherwise, you might fix it and try to build it and think it's not working, but really it's using the old settings- so clean it first.
    0 讨论(0)
  • 2021-02-01 17:50

    The problem is in Code Signing Identity. This is a new problem that showed up on the latest release of Xcode. Go to Code Signing Identity, make all IOS Developer rather that IOS distribution.

    0 讨论(0)
  • 2021-02-01 17:55

    The problem is in Code Signing Identity. This is a new problem that showed up on the latest release of Xcode. Go to Code Signing Identity, then add other and type in "iPhone Developer" as shown in the error message and save then this will display.

    If this does not work show me your General signing. and your Code Signing Identity from both your Project and your Targets

    0 讨论(0)
  • 2021-02-01 17:56

    If you have error message like this: [target name] is automatically signed, but provisioning profile xxxxx-xxxx-xxxx-xxx-xxx has been manually specified. Set the provisioning profile value to "Automatic" in the build settings editor, or switch to manual signing in the project editor.

    You can fix like this: 1. Check Automatically code sign in 2. Uncheck Automatically code sign in, then check it again and reselect the Team. Xcode then fixed whatever was causing the issue on its own 3. If still not work, find project.pbxproj, search the profile, and just delete that line, then save it.

    This work for me!

    0 讨论(0)
提交回复
热议问题