Error itms-90035 - Xcode

后端 未结 16 1113
栀梦
栀梦 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:45

    I had same issue using both xcode 6.3.1 and 6.4 beta. Mine said it was my main.o file. I looked in the copy bundle resources and for some reason my project's main file was there. I removed it and archived it again to send up to itunes connect for testflight and it uploaded fine. Took me 3 hrs to figure out it was that stupid file. Home this helps. Seems you need to really pay attention to what your sending up in that "Copy Bundle Resources" in build phases. Whatever file its telling you is a problem remove taht from this area and give it a try.

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

    We had a very similar problem today and solved it.

    ERROR ITMS-90035: "Invalid Signature. A sealed resource is missing or invalid. The binary at path [MyNiftyApp.app/MyNiftyApp] contains an invalid signature. [...]"

    We are using Jenkins-CI for the build process together with the xcode-plugin. When I reviewed the jenkins build log I found this error message:

    file added: /Users/Shared/Jenkins/Home/workspace/RELEASE_STAGE_my-nifty-app/build/MyNiftyApp.app/MyNiftyApp.app
    file modified: /Users/Shared/Jenkins/Home/workspace/RELEASE_STAGE_my-nifty-app/build/MyNiftyApp.app/Assets.car
    ]
    Codesign check fails : /Users/Shared/Jenkins/Home/workspace/RELEASE_STAGE_my-nifty-app/build/MyNiftyApp.app: a sealed resource is missing or invalid
    

    After searching for that Assets.car I found this post: https://issues.jenkins-ci.org/browse/JENKINS-21253 The User had a similar problem, could solve it by deactivating the following plugin option "XCode -> General Build Settings -> Generate Archive? " (it was true before, now it's false).

    At least this solved the problem on our side - maybe it will guide you to the correct direction.

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

    I resolved this by simply removing the "binary" file(s) in the error.

    For you its www/js/release.sh.

    For me it was two redundant bower-files, a .sh-file and a .js-file that was located under a "bin"-folder (maybe thats why it thought it was a binary?).

    On a side-note, it seems that you could still continue the upload process by just clicking Send after being presented with the errors in Application Loader.

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

    I received this same error when I tried to upload my app using ApplicationLoader 3.0. Upgrading to ApplicationLoader 3.1 (i.e. the latest), fixed the issue for me.

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

    In the platforms directory run:

    grep -r '#!/usr/' *
    

    This will show you all the files that can be executed. Typically this would include .sh and node files.

    From the results find the files that are in your project folder (e.g. my project folder was platforms/ios/www/*) and delete them leave the rest.

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

    I had the exact same problem. I was writing a bug on the myApp.app/myApp Decision: Look for files that start with special characters or characters other than English. I found, deleted and everything worked!

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