diff options
| -rw-r--r-- | ios/BuildInstructions.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ios/BuildInstructions.md b/ios/BuildInstructions.md index c8cc6ce657..340a116f76 100644 --- a/ios/BuildInstructions.md +++ b/ios/BuildInstructions.md @@ -36,7 +36,7 @@ openssl req -new \ WWDR certificate is used to verify the development and distribution certificates issued by Apple. ``` -curl https://developer.apple.com/certificationauthority/AppleWWDRCA.cer -O +curl https://www.apple.com/certificateauthority/AppleWWDRCAG3.cer -O ``` # Convert certificates to PEM format @@ -47,8 +47,8 @@ openssl x509 -inform der -outform pem \ -out distribution.pem openssl x509 -inform der -outform pem \ - -in AppleWWDRCA.cer \ - -out AppleWWDRCA.pem + -in AppleWWDRCAG3.cer \ + -out AppleWWDRCAG3.pem ``` # Export private key and certificates @@ -67,14 +67,14 @@ scratch. openssl pkcs12 -export \ -inkey private_key.pem \ -in distribution.pem \ - -certfile AppleWWDRCA.pem \ + -certfile AppleWWDRCAG3.pem \ -out apple_code_signing.p12 \ -name "<FRIENDLY_KEYCHAIN_NAME>" ``` # Remove old private key and certificates from Keychain -__Skip this section if you create the private key in the very first time.__ +__Skip this section if you create the private key for the very first time.__ If you happen to re-create the keys, you will have to remove the old keys and certificates from Keychain. @@ -124,7 +124,7 @@ securely stored in Keychain now. ``` rm distribution.{pem,cer} \ - AppleWWDRCA.{pem,cer} \ + AppleWWDRCAG3.{pem,cer} \ cert_signing_request \ apple_code_signing.p12 \ private_key.pem |
