Xcode App Submisson ERROR ITMS-90207: "Invalid Bundle

11,836

Solution 1

The connection to the info.plist file might be causing the issue. Try changing the bundle id from target and check if it reflects in the plist file and vice-versa. If this doesn't reflects copy your plist file at some other location, remove it from the app and drag and drop again, it will help. This solved my issue, hope it helps.

Solution 2

Please check your info.plist file and add below key if not

<key>CFBundleExecutable</key>
    <string>$(EXECUTABLE_NAME)</string>

Solution 3

I was dealing with this error since yesterday and when I was about to give up I tried with a different Mac and it worked, the only difference between the OSX was that I updated to Xcode 8.2.1 and the other OSX had 8.2. Hope it helps!

Share:
11,836
Ilesh P
Author by

Ilesh P

Having 7+ years of experience in the area of software development for mobiles, which includes understanding requirements, working on software design, coding, testing, and maintenance clean code. Swift || Objective-C || Java - UIKit/Auto layout, CoreData, CoreAudio, Mapkit, Core Bluetooth, SQLite. - Experience in using version control and bug reporting tools like ​git and svn​ etc. - Payment SDK Integration (Braintree SDK, Paypal, and many more) - Worked on various architectures such as​ MVC, Singleton, Delegate, and OVS. - Manging 3rd party libraries and create a framework and publish as cocoa pods. - Experience in web service integration (JSON, XML). - Experience in Audio, Video, and Live Streaming (Radio) in IOS. - Ability to work alone and in a team environment.

Updated on June 04, 2022

Comments

  • Ilesh P
    Ilesh P about 2 years

    When I am submitting Application through Xcode Application validation successful but when submit to Appstore Then This error Occur.

    ERROR ITMS-90207: "Invalid Bundle. The bundle at 'example.app' does not contain a bundle executable

    I also try Application loader Version 3.1 but same error occur. I refer all link like
    link 1 link 2 link 3 link 4

    enter image description here

  • Manish Verma
    Manish Verma over 8 years
    I'm having the same problem but solution above is not working.
  • Manish Verma
    Manish Verma over 8 years
    Changes are reflecting in plist file. But still getting the error. Not able to upload.
  • Rahul Patel
    Rahul Patel over 8 years
    will you plz provide me screen shot of your error.? @Manish Verma
  • Manish Verma
    Manish Verma over 8 years
    @RahulPatel I solved it. Actually there exists the CFBundleExecutable key in the plist file but my plist contained some characters which made it invalid xml. So after removing invalid characters my app uploaded successfully.