1

In my project I get the following error in Xcode:

library not found for -lAsyncDisplayKit

My project was configured with pod.

Can anyone help me fix it?

Diego Martinoia
  • 4,592
  • 1
  • 17
  • 36
bhautikmewada191
  • 653
  • 1
  • 9
  • 20

2 Answers2

0

Here you can find some FAQ to resolve main issues with Cocoapods. You have also to check the architecture for the single project and target. If you use a different architecture, Xcode doesn't compile the others and so it will never find the libs

Luca D'Alberti
  • 4,749
  • 3
  • 25
  • 45
0

After run pod install or pod update you must use the new <YourProject>.xcworkspace file instead of the old <YourProject>.xcodeproj file.

It happens because .xcworkspace contains your .xcodeproj and the pods.

After that you should be able to run normally.

Haroldo Gondim
  • 7,725
  • 9
  • 43
  • 62