Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

App Processing Error: Unexpected CFBundleExecutable Key

I am trying to submit to Apple with bitCode enabled. Everytime i submit I am getting this email.

We have discovered one or more issues with your recent delivery for "MyAPPP". To process your delivery, the following issues must be corrected:

Unexpected CFBundleExecutable Key - The bundle at '/Payload/MyAPPP.app/Base.lproj' does not contain a bundle executable. If this bundle intentionally does not contain an executable, consider removing the CFBundleExecutable key from its Info.plist and using a CFBundlePackageType of BNDL. If this bundle is part of a third-party framework, consider contacting the developer of the framework for an update to address this issue.

Once these issues have been corrected, you can then redeliver the corrected binary.

My application's info.plist has following.

enter image description here

Cocoa Pods for every pod has info.plist as

enter image description here

All Pods are here.

enter image description here

like image 527
NaXir Avatar asked Sep 15 '16 13:09

NaXir


1 Answers

I faced the same issue. Finally I got a solution.

In my case, Info.plist file was added to Copy Bundle Resources in Build Phase. I just remove it from Copy Bundle Resources and it worked!

like image 192
rizaozdulger Avatar answered Nov 15 '22 03:11

rizaozdulger