I want to edit the xcconfig file, but unfortunately Xcode only allows 1 xcconfig file per configuration, and that is Pods.xcconfig because I'm using Cocoapods
So how can I edit the xcconfig without hurting Cocoapods
I can think of several ways
- Make Xcode use multiple xcconfig files
- Use my own xcconfig file that includes Pods.xcconfig file
So how to deal with this ?
pod install
command Pods.xcconfig automatically placed at Target configuration. If you change this - you should also manually change this after each pods update. So, the question how to avoid it. – Skeptic