prateek sharma
prateek sharma

Reputation: 175

ERROR ITMS-9000 : invalid bundle. the bundle at xyz.app does not contain bundle executable

I'm trying to submit app to app store. I'm getting this error:

ERROR ITMS-9000 : invalid bundle. the bundle at xyz.app does not contain bundle executable.

Everything is correct: bundle ID, certificate, provision profile all are the same. But still giving me the error above.

Upvotes: 2

Views: 3880

Answers (5)

Thuỷ Đào
Thuỷ Đào

Reputation: 1

For Xcode 7.1.1 & latest iOS is 9.1

You need to change:

  • Build Active Architecture Only to NO (include debug & release).
  • Valid Architectures arm64, arm7, arm7s

Upvotes: 0

Chris Ho
Chris Ho

Reputation: 295

Make sure your Build Setting->Architectures->Build Architectures->Yes

Upvotes: 0

Koh
Koh

Reputation: 1570

Make sure your device is not connected to your computer. And then build your archive. Such was the case here: Validating app, application is missing Architecture armv7

Upvotes: 3

user1183530
user1183530

Reputation: 11

The same issue was also reported here: Apple iTunes Connect App submission error

I have also experienced this but have not resolved it yet![enter image description here][1]

Am building for architectures: arm64 armv7 armv7s

Upvotes: 1

Sverrisson
Sverrisson

Reputation: 18177

Check that you are building for arm64 armv7 armv7s

Upvotes: 0

Related Questions