Troubleshooting AppStore - TwoGears/hakomo-guides GitHub Wiki
-
Why can't I export my certificate into p12? A: Because you are in "Certificates" not in "My certificates" section.
-
Why can't i see the certificate in "My Certificate" section? A: A certificate appears in this section only if you have the public/private key pair. Those were automatically created when you created the Request For Certificate that needed to be uploaded to developer.apple.com
-
Note for multiple computers on the same account In order to build apps and put them on phone, you need to have the certificate and public/private keys. If you don't, you will have an error saying your certificate is expired or invalid. To fix this:
- Open Keychain Access on the computer that generated the Certificate Signing Request. In the section 'Keys' you will find the public and private keys for your certificate by the name you used in 'step 3'
- right click on public key->Export and write "public_key" and save to desktop
- right click on private key->Export and write "private_key" and save to desktop (use or don't use pass, but will need to be remembered forever)
- On the second computer, transfer keys to desktop
- Because of bug, public key needs to be imported with terminal, so type
security import ~/Desktop/public_key.pem -k ~/Library/Keychains/login.keychain
- Double click on the private key to import it (type pass if used)