CocoaPods adds invalid other Linker flags

I have placed $(inherited)

in other linker flags in my app's build settings. This now throws an error, but adds a test framework.

The error and solution are explained here in detail: Xcode 5.0.2 dyld: library not loaded: @ rpath / XCTest.framework / Versions / A / XCTest

How can I change other linker flags added by CocoaPods to ensure XCTests are not added?

One solution would be if I could somehow copy all the actual values $(inherited)

and replace with $(inherited)

those values ​​and then just delete the XCTests

framework. However, I'm not sure how to find them.

+3


source to share





All Articles