Migrating to CocoaPods 1.0.1

后端 未结 1 1933
借酒劲吻你
借酒劲吻你 2021-01-23 07:59

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         


        
相关标签:
1条回答
  • 2021-01-23 08:56

    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

    0 讨论(0)
提交回复
热议问题