Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Problems with Cocoa Pods

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?

like image 958
DevC Avatar asked Dec 03 '14 15:12

DevC


People also ask

How do you clean cocoa pods?

You can clean your Pods & Displays using a damp soft cotton cloth or microfiber towel. You can sanitize and disinfect the outside of your Pods & Displays using Hydrogen Peroxide.

How do I uninstall a pod?

Just rm -rf that pod's folder, and remove the line from the Podfile. Then run pod install again.

What does POD repo update do?

cocoapods-repo-update is a CocoaPods plugin that checks your dependencies when you run pod install and updates the local specs repositories if needed.

How do I know if CocoaPods is installed on my Mac?

To find if Cocoapods is installed or not run cmd (pod --version). if theresult is (Not Found) Pods is not installed.


1 Answers

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.

enter image description here

like image 149
DevC Avatar answered Sep 20 '22 21:09

DevC