No valid personal identifier found?

I’m trying to create a mailing list assembly with mono for several days ... I received a distribution grant profile and distribution certificate from our "team agent" and separately dragged it to the xcode-organizer and keychain-access, but there is still a warning message there:

"A valid signature ID matching this profile was not found in your keychain."

and I could not do the assembly as before. Any idea which step I did wrong? Please advise; much appreciated!

Thanks ab.yyang

+3
source share
4 answers

It looks like you only have the provisioning file and certificate from Apple, but not the original secret key used to request the certificate.

If so, you need to either ask who created it for the private key copy, or you will need to generate completely new keys, request a new certificate and create a new addition file.

+3
source
  • open access to key rings
  • erase everything in the "keys" and "certificates"
  • open Xcode and delete all provisioning data.
  • go to the Provisioning Portal and revoke the certificate
  • create a new one and use the launch assistant
+2
source

If this happens after updating the DEVELOPER CERTIFICATE,

My fix for the problem is related to the Apple provisioning profile, change the development setting and check the box in the certificate field (suppose this is an empty space next to the certificate name).

then you can: download and set this position manually by dragging to xcode or go to "Profiles-profiler-organizer-library" (on the left) and click on the "Update" button (at the bottom of the screen), this will load a new status profile that " connected "to the new CERTIFICATE, and the warning disappears.

+1
source

If you are creating to run on a physical device, you need to register with the iOS Developer Program. From there, you will be taken to the Developer Portal to create a Provisioning Profile. This profile is uploaded to Xcode through the Organizer window.

Have you taken these steps?

0
source

Source: https://habr.com/ru/post/1500106/


All Articles