io: ios app development option greyed out

后端 未结 5 656
醉话见心
醉话见心 2021-02-05 01:21

I just signed and created a certificate with keychain access, then in the developer portal I click certificates->developer->+ and when I am prompted for What type of certificate

相关标签:
5条回答
  • 2021-02-05 01:24

    from IOnic help document through CLI option: http://docs.ionic.io/v2.0.0-beta/docs/ios-build-profiles

    Try with below option : Create the p12 Certificate using OpenSSL

    Download your iOS certificate to the same directory as your private RSA key. We'll need it to create the Certificate.p12 file.

    First, we need to change the format of the iOS certificate to PEM.

    Shell :

    openssl x509 -inform DER -outform PEM -in ios_development.cer -out ios_development.cer.pem Now that the iOS certificate is in the proper format, we can create the Certificate.p12 file.

    Shell : openssl pkcs12 -export -inkey keyname.key -in ios_development.cer.pem -out Certificate.p12

    You will be prompted to enter a password, which will be used to protect the exported certificate. Give it something you can remember!

    0 讨论(0)
  • 2021-02-05 01:27

    Nowadays iOS App Development option is getting greyed out don't know why.

    Even I had this situation and I solved it (made it enabled) using the following steps.

    1. Remove the expired development certificates from Certificates/Development.

    2. Revoke the unused development certificates.

    3. Now click on the + button and you are free to select the

      iOS App Development option.

    0 讨论(0)
  • 2021-02-05 01:33

    You can only request one development certificate per user. Either log in as the user you want to request a certificate for, or remove the existing certificate(s) for the user you are logged in as. No need to delete everything.

    0 讨论(0)
  • 2021-02-05 01:34

    Figured it out.

    1. Revoke all developer certificates.
    2. Click certificated again to refresh

    Works!

    0 讨论(0)
  • 2021-02-05 01:34

    If am correct you can only request one development certificate per user.

    0 讨论(0)
提交回复
热议问题