edhnb
edhnb

Reputation: 2202

Invalid Binary - iphone app submission

Receiving this error after submission to Apple saying my binary is invalid.

Invalid File Name - Your package contains a file ' .app/FBUserSettingsViewResources.bundle' with a name that contains invalid characters. Avoid using control characters in the file names. Invalid File Name - Your package contains a file ' .app/es.lproj/[email protected]' with a name that contains invalid characters. Avoid using control characters in the file names. Invalid File Name - Your package contains a file ' .app/VU.png' with a name that contains invalid characters. Avoid using control characters in the file names.

it appears that the error is with the space before the ".app' in each path.

Any ideas how to fix?

Thanks!

Upvotes: 0

Views: 840

Answers (2)

Sam Meadley
Sam Meadley

Reputation: 227

I can't remember the exact scenario, but I've had something similar happen to me in the past. I think I resolved it by removing the troublesome files from Build Phases>Copy Bundle Resources then re-adding them to the project. Not ideal, but it seemed to work!

Upvotes: 0

KevinS
KevinS

Reputation: 607

Check the path for these images.

It sounds like you might have added the images from another application's .app directory. When you add an image to your project check the box that says "Copy".

To check the location of the images: Select the Image on the left in Xcode and select the "File Inspector" on the right. You want the images to be located within the same directory as your project.

Upvotes: 1

Related Questions