Xcode - ld: library not found for -lPods

后端 未结 22 1473
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-11-28 18:27

I get these errors when I try to build an iOS application.

ld: library not found for -lPods
clang: error: linker command failed with exit code 1 (use -v to s         


        
22条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-28 18:54

    Had a same issue after upgrading Deployment target from 7.0 to 8.0 and enabling use_frameworks!

    cocoapods did not delete previously generated PodName.a files from the Frameworks section of my project.

    So I had to delete those manually, because they caused the linker error

提交回复
热议问题