Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode App Submisson ERROR ITMS-90207: "Invalid Bundle

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

like image 724
Ilesh P Avatar asked Oct 27 '15 13:10

Ilesh P


3 Answers

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

<key>CFBundleExecutable</key>
    <string>$(EXECUTABLE_NAME)</string>
like image 62
Rahul Patel Avatar answered Oct 12 '22 05:10

Rahul Patel


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.

like image 30
Alkesh Fudani Avatar answered Oct 12 '22 03:10

Alkesh Fudani


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!

like image 21
Lucho Avatar answered Oct 12 '22 05:10

Lucho