Archive validation error: application package must be installed in / Applications

To release my OSX application, I changed the name from the working title to the final name. I changed the project name using the file inspector.

Currently, the project contains several periods (.) In its name.

The following files have been changed: - content-xcworkspacedata - user.xcuserdatad - (Application name) -info.plist - project.pbxproj - (Application name) .xcsheme

and now I get this error while checking the archive:

Archive validation error: application package must be installed in / Applications

I reviewed the project goal and the target directory is correct: enter image description here

I also have a static library as a subproject (target) in my workspace. But there it is set to "Skip installation"

How can I fix this problem?

Update:

I forgot to mention that I had to hardcode the Bundle identifier to avoid renaming.

The application directory is set with the variable $ (LOCAL_APPS_DIR)

+5
source share
1 answer

Removing punctuation in the application name solved the problem. The validation process seems to use a regular expression like. *. And file names with multiple "." cannot be matched.

+1
source

All Articles