Sensitive data in Xcode project files?

There are many weird files like pbxproj, xcscheme, xcconfig, etc. Is there any important data in the Xcode project files that I should not check?

I sent my application to the App Store, so I wanted to make sure that by default there was no important information in the project files that I should explicitly exclude from the general source control (this is an open source project).

+4
source share
1 answer

None of this will be compiled into the application, it really matters if you use the source code for others. If you use a control source like git, then you must configure .gitignore to ignore these files.

Here is the github provided .gitignore file:

https://github.com/github/gitignore/blob/master/Objective-C.gitignore

+2
source

Source: https://habr.com/ru/post/1625054/


All Articles