Problems with Cocoa Pods

cocoapods, ios, objective-c

Solution

Based on Mefs link I was able to get it working. If anyone is wondering where to put `$(inherited)`, put it in the `Other linker Flags` section of your project.

Problem

I am having very bad problems with `CocoaPod`. I had to update `Cocoa pods` for Yosemite. I then ran pod update and got the following warning message: ``` [!] The `app [Release]` target overrides the `OTHER_LDFLAGS` build setting defined in `Pods/Target Support Files/Pods/Pods.release.xcconfig'. This can lead to problems with the CocoaPods installation - Use the `$(inherited)` flag, or - Remove the build settings from the target. ``` And ``` [!] The `app [Debug]` target overrides the `OTHER_LDFLAGS` build setting defined in `Pods/Target Support Files/Pods/Pods.debug.xcconfig'. This can lead to problems with the CocoaPods installation - Use the `$(inherited)` flag, or - Remove the build settings from the target. ``` EDIT: I followed @mef link but did not know where to place the code?

Original source

Related problems