Hi,
Did you create a new CSR? Or re-submit an existing one?
I run openssl and then on apple developer I have edited the certificate and submitted the new CSR.
openssl genrsa -out ALDencryption.key 2048
openssl req -new -key ALDencryption.key -out csr2048ALDEncrypt.certSigningRequest -subj "/emailAddress=****, CN=****, C=CH"
openssl genrsa -out ALDsigning.key 2048
openssl req -new -key ALDsigning.key -out csr2048ALDSigning.certSigningRequest -subj "/emailAddress=****, CN=****, C=CH"
Then I downloaded the certificates and installed them.
Provisioning profiles authorise, amongst other things, specific code-signing certificates. If you create a new certificate, you need to regenerate your profile.
Xcode generates usually the embedded provisioning profile, but my Xcode setup isn't working. The archive action fails.
I build from my makefile all dependencies so there are build directories for arm64, x86_64 and the final universal app build from make.
I am unsure what Xcode actually does? Last build it complained about duplicated files, although they were just for different architectures.
Just now I build using universal destination, might be it helps.
As long the archive build fails I won't get the new provisioning profile.
regards, Joël