Error itms-90035 - Xcode

后端 未结 16 1112
栀梦
栀梦 2020-12-02 15:02

I have developed a phonegap application which is running absolutely fine on iPhone. Now, I want to submit the app to the appstore. Following is the procedure I am following

相关标签:
16条回答
  • 2020-12-02 15:53

    EDIT: I managed to avoid this error by removing my projects .sh files from my target.

    So far I'd say that's a bug on Apple's side.

    I submitted an app yesterday without any issue, rejected it today to submit a slightly altered binary today, but like you I'm now encountering the same error. I thought it was related to Xcode6.3.1 because I installed it this morning so I installed Xcode 6.3.0 again but the error remained. Then I checking everything thoroughly:

    • Certificates
    • Provisioning Profiles
    • iTunes connect application status

    But no success so far.

    The fact a "itms-90035" Google search returns only 1 result makes me think that may be some temporary incident.

    0 讨论(0)
  • 2020-12-02 15:54

    In my case, I got the error when submitting a re-signed ipa file. Turns out I had looked at the application package in Finder, and it had created a .DS_Store file (this was after re-signing with codesign, which would have complained if the file were present at the time of signing).

    After removing the .DS_Store file, the upload succeeded.

    0 讨论(0)
  • 2020-12-02 15:55

    I have the same issue. Then I delete the .sh file. And I submit my app again. Successful!

    0 讨论(0)
  • 2020-12-02 15:56

    This happened to me after updating to the latest Xcode (6.3.1). It's not just .sh files, as I was getting these errors about node scripts. It appears that ANY file that starts with #!/usr/bin/env will cause these errors. I was able to cause arbitrary errors by adding a #! to a random file.

    Temporarily deleting the #!/usr/bin/env directive from the top of the files will work but you'll want a better long-term solution :)

    You'll have to fix it by dealing with each script file case-by-case for what makes sense in your project.

    As noted above this could be a temporary problem on Apple's side, not necessarily related to Xcode version.

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