Nitish
Nitish

Reputation: 14123

Invalid IPA testflight

All of a sudden I am getting the following error on uploading build on testflight:

Invalid IPA: Couldn't find executable specified in Info.plist - check the value of your CFBundleExecutable key.

I tried to upload the previous build which I already uploaded on testflight, even then I got the same error. What might be the reason?

Upvotes: 4

Views: 2335

Answers (3)

David Haynes
David Haynes

Reputation: 933

This seems to be related to Xcode 4.6 not being able to build for armv6 any more, so removal of any references to that architecture fixed it for me.

Upvotes: 1

user1884642
user1884642

Reputation: 21

My solution:

  • Specify Architectures: armv7;
  • Set Deployment target 4.3;
  • Archive app;

After these changes my package was uploaded to testflight

Upvotes: 2

Nitish
Nitish

Reputation: 14123

I found solution to this error. Actually there were too many builds on testflight with same productName. I changed the productName and uploaded the same build again. It uploaded.

Upvotes: 3

Related Questions