Configure a second computer to distribute iOS applications

I followed the recommendations and fine-tuned my desktop for Ad-Hoc distribution (the requested certificate from CA, created the main certificate with my name, created the initialization associated with devices, etc.).

Now I have my laptop, and I need to configure it with the same account (not creating a team development account, but an administrative one). I did not recreate the certificate from CA, because I already have a valid certificate online (the one that is associated with the provision), and I downloaded and installed it in my key chain. But if I open Xcode and look for valid security, it says that "the profile does not match any valid pair with the certificate / private key in the default key." Do I need to renew my own certificate every time I switch from a workstation to one in my office?

+4
source share
1 answer

When you create a CA, it uses the private key on your system. You need to copy this to your laptop for Xcode to use CA.

http://developer.apple.com/ios/manage/certificates/team/howto.action (login required)

Here is a useful related article:

http://www.buggyprogrammer.co.uk/2010/12/13/sharing-ios-distribution-certificate/

I myself do it myself, so I'm not sure if this works, but it looks like it should be.

+5
source

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


All Articles