Embedding and signing programs in Xcode / OS X

I have a Mac application developed in Xcode that contains a helper executable. When I export the application as a signed application, the auxiliary executable cannot perform actions such as writing to the file system.

I can fix this in the exported application using forced deep code from the terminal, but this does not help me distribute the application in the App Store.

There is a list of "Embedded binaries" in the target general setting. When I add the executable file and the library, it depends on the use of the + button in this list, Xcode imports the files, but none of them add them to the bundle or list them in the "Embedded binaries" list.

Embedded binaries list

How can I correctly add this executable to the kit and include it and subscribe for distribution?

+4
source share
2 answers

As I recall, just sign the programs in Xcode, the certificate is associated with your account. Following is the sign guide

+2
source

All Articles