Problem creating IPA using Xcode 6.3.1

enter image description here

When I try to create an IPA for testing, I get the message:

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

Why is this happening?

+6
source share
6 answers

This is what worked for me.

On my machine, I saved both Xcode 5 and Xcode 6.

From Xcode 6 beta, Archive the project. Close Xcode 6.

Open Xcode 5, go to Organizer and export it as an Ad Hoc with the appropriate training profile.

What is it!

+3
source

Most of these problems are very easily resolved by Fastlane . In no way do I want to advertise a product - it is an open source tool and has saved a lot of time.

+2
source

This is an Xcode error.

When I tried to export the developer profile from another system and installed on my system, it works fine.

0
source

It worked for me

  • created a new CSR (code signing request)
  • a new distribution certificate with CSR is created, after creating it, download and double-click to install
  • create an application id if you don’t already have one.
  • create a resource allocation profile, select your application identifier and the generated certificate.
  • after creating it, download and double click to install
  • restart xcode
0
source

Go to keychain access

  • Keychain> Certificate Assistant> Request a certificate from a certification authority.
  • Fill in the letter. (keep other defaults)
  • Save the file.

Sign in to the Apple User Center

  • Go to certificate, profiles Provisioning profiles
  • Click the "Add" button in the upper right corner.
  • Select an application ID from the drop-down list.
  • Select the profile you want to enable.
  • Click "Create" and
  • Download Distribution Certificate

Share Keychain

  • Go to File> Import Items
  • Select a distribution certificate.

Now it should work.

0
source

in my case, everything was done in accordance with the manual (I understand this), but it turns out that xcode is played out. I used custom local assets for signing, and I was done :)

enter image description here

0
source

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


All Articles