Application failed codesign verification?

前端 未结 11 1758
误落风尘
误落风尘 2021-02-03 10:30

I\'m having problems submitting my iphone application. I saw some similar questions, but I didn\'t find an answer.

When I archive the project and click validate, I get t

相关标签:
11条回答
  • 2021-02-03 11:27

    You need not only a valid Distribution certificate, but a distribution provision file that matches that certificate and is appropriate for your app's Bundle ID.

    0 讨论(0)
  • 2021-02-03 11:27

    Check that the TARGET (and not only the Project) is setup with the correct Code Signing Identity for Release

    0 讨论(0)
  • 2021-02-03 11:28

    I spent 9 hours solving this problem... turned out that Xcode also gives the "Application failed codesign verification" error if your project is located on another server.

    0 讨论(0)
  • 2021-02-03 11:29

    In spite of what you say, there does not appear to be an appropriate distribution certificate downloaded. In the Provisioning portal click on the "Distribution" tab and find your certificate. Click the download button on the right next to the appropriate certificate.

    0 讨论(0)
  • 2021-02-03 11:31

    To solve this type of problems, Go through following steps:

    1. Download required provisioning profiles(debug,ad_hoc,app_store)
    2. Go to target (click on application name --> target)
    3. click on info tab (next to summary )
    4. change the Bundle identifier as you given in provisioning profile
    5. click on build settings
    6. go to code signing section
    7. now select correct provisioning profile in each row(code signing identity,debug,... etc.)(for app-store must select app_store provisioning profile )
    8. set "yes to distribution" in "build options" section
    9. click on project name under "project section "
    10. repeat step 6,7 and 8
    11. go to "edit scheme" (click on project name next to stop button --> edit scheme)
    12. change build configuration to distribution(only for app_store and ad_hoc profiles)
    13. make a build for ios device and then validate or distribute
    0 讨论(0)
提交回复
热议问题