Your account already has a valid iOS development certificate

I borrowed the iPad i80 (MF432C / A) iOS 8.0.2 from another department of my company working on the iOS application > and tried to create my application.

I got the following error while trying to build it through Xcode Version 6.4 (6E35b)

Failed to enter code sign.

None of the valid provisioning profiles include devices: 725 product dev iPad mini.

Xcode may try to fix this problem.

enter image description here

After clicking the "Fix the problem" button, which has recently done a decent job with the automatic settings of unknown devices, I get the following message:

Your account already has a valid iOS development certificate.

You have a valid iOS development certificate in the Member Center, but it is not installed locally. If your subscription ID is installed on another Mac, you can export the developer profile on this Mac and import it on this Mac. You can also cancel your current certificate and request a new one.

enter image description here

From the corresponding Apple docs, it looks like I'm missing the correct signature ID to create my application on this device. The problem is that this is most likely a signing of the identity of the developers of another application. Is there a way around this error and provide a device for my own application?

Edit: In the activity log, I see the following two code signing errors:

Check Dependencies

Code sign error: no matching provisioning profiles were found: none of the existing provisioning profiles include devices: 725 dev mini products

CodeSign error: product type requires signing of the "Application" code in the "iOS 8.4" SDK

+5
source share
1 answer

You need to install the public and private keys associated with the development profile on the Mac that you are using. They can be found in the Keychain app, and simply transferred. You can cancel and request a new one, but then your device will not be able to start the application from your working computer, and you will have to rinse and repeat.

If you have already done this and are still experiencing problems, try registering the device manually in the "Certificates, Identifiers and Profiles" section of the Participants Center, and then updating your account in "Xcode"> "Settings"> "Accounts"> "Name account "

+6
source

All Articles