0

I've seen other posts with this issue but they are all old and not updated for Xcode 7.

I'm submitting an app with a + in the app name (for example appName+) and getting this error when achieving, submitting then uploading to the app store.

"This bundle is invalid. The executable name, as reported by CEFBundleExecutable in the Info.plist file, may not contain any of these characters \ [ ] { } ( ) . + *" Error ITMS-90121

Here is what I've tried to do to fix it and still getting the same error - Changed the entire project name and removed the +: 1) Changed Bundle display name from ${PRODUCT_NAME} to appName+. Didn't work. 2) Changed just the target name. Didn't work. 3) Changed just the target - build settings - packaging - product name. Didn't work. 4) Tried exporting the archive and uploading through Application Loader. Didn't work.

I can't figure out how to have my app name have a + in it but nothing in the plist using the + character. Any ideas for a solution?

Jim Bak
  • 638
  • 1
  • 8
  • 17

1 Answers1

1

Okay I'm sure there are other ways to do this but this is what I did to fix it.

The error says the executable name can't have a + character. So I renamed the entire project by clicking the project on the left and on the top right of the utilities panel I typed a new name without +.

Then I went to the plist, found bundle name, and put the + in there. Submitted and worked like a charm.

Termininja
  • 6,620
  • 12
  • 48
  • 49
Jim Bak
  • 638
  • 1
  • 8
  • 17