I am trying to migrate our existing CocoaPod configuration from 0.39.0 to 1.0.1.
Our existing Podfile
looks like:
platform :ios, \'9.0\'
use
Similar question: Cocoapods testing linker error
Seems to be a common problem people are facing when upgrading. Your new Podfile
looks right to me.
If you haven't already, I would try:
cleaning the build folder (in Xcode -> Option+Shift+Command+K)
clearing the derived data folder (rm -rf ~/Library/Developer/Xcode/DerivedData
)
clearing your CocoaPods cache (rm -rf ~/Library/Caches/CocoaPods
)
and run pod install
again
EDIT: The question I mentioned above has an answer now: https://stackoverflow.com/a/37705768/3067051