I have compiled a static library for iOS with Xcode with selected characters. It is compiled in the Release configuration. When I copy the static library to another iOS project (I physically copy it to another directory), I can still browse the source of the static library when navigating through the code. I clicked Show in Finder in the source window and pointed me to the corresponding source file on disk.
I opened the library in a hex editor and really contains the paths to my source files on my machine, as well as a bunch of other text data that should not be displayed.
Am I missing something in the settings of my project? If this is the expected behavior, how can I make sure that the client does not see characters, source file names, etc.?
source
share