Application failed codesign verification?

前端 未结 11 1757
误落风尘
误落风尘 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:06

    Your Build settings appears to have a DEVELOPER certificate for the RELEASE version.

    In order, to validate and submit a binary you've to configure the release version to use a DISTRIBUTION certificate.

    Create and download a Distribution certificate and import it (drag and drop to Xcode).

    Configure the build/release for using the distribution certificate. If you don't see the new distribution certificate as an option for your build, check the AppleID used both for generate the certificate and for your Build settings. They must be the same, otherwise Xcode can't sign your app correctly.

    This will solve your problem.

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

    The error went away for me when I compressed the .app.dSYM file together with my .app file before uploading it to iTunes with the application loader.

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

    This is generally very helpful with figuring out CodeSign problems. A very detailed troubleshooting guide.

    https://developer.apple.com/legacy/library/technotes/tn2250/_index.html#//apple_ref/doc/uid/DTS40009933-CH1-TNTAG31

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

    I had same problem while I send my binary to itunes connect.

    I found the solution by renaming "resources" folder with some different name.

    Make sure you have not created or used folder in your application with name "Resources". This may conflict while submitting app to itunes connect.

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

    First of all you have to create a new App ID in in the iOS Provisioning Portal. To create your App ID be sure to use the same Bundle Identifier that you are using in your project.

    Second you have to create a Distribution Provisioning Profile in the "Provisioning" section and "Distribution" tab. This profile will link your App ID with your Distribution Certificate. Be sure to select "App Store" Distribution Method, and the App ID reciently created. Download the Distribution Profile and double-click to install (you can also add it manually with the Organizer in the "Devices" tab).

    Now you are able to setup the codesign section in your project. Select the profile you have just created for release and distribution methods, archive and then validate.

    For further information you can read the How to's in the iOS Provisioning Portal

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

    Try to close your app first then open it again... if it still can't see your distribution

    try to see if there are possible options in the (Don't Code Sign) rows

    if still no options you can repeat the tutorial that you followed

    try to see the info.plist if your bundle id is correct. com.(company name).(appname)

    if you get

    Code sign errors

    you can view this Link and this Link

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