Problems with Cocoa Pods

I have very bad problems with CocoaPod . I had to upgrade Cocoa pods for Yosemite. Then I performed a pod update and received 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 the @mef link but didn't know where to place the code?

+5
source share
1 answer

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

enter image description here

+14
source

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


All Articles