Cocoapods ld: library not found for -lPods-Projectname

后端 未结 16 980
一整个雨季
一整个雨季 2020-12-02 10:47

I\'ve installed cocoa pods library and some frameworks through it. Now when I compile project the build fails.

Error: ld: library not found for -lPods-Project clang:

16条回答
  •  北海茫月
    2020-12-02 11:15

    In my case I found that a mis-match of deployment target of the Project (iOS 11.4) versus the Target (iOS 10.3). Updating the target to iOS 11.4 fixed the issue.

    Project > Info > Deployment Target > iOS Deployment Target
    Project > Target > General > Deployment Target > Target

    Podfile: platform :ios, '11.4'

提交回复
热议问题