Reputation: 3993
Anybody have cocoapods working with an Ad Hoc configuration for Testflight?
I have the same problem as: library not found for -lPods but that answer does not make any sense and the documentation is absurdly sparse.
Upvotes: 5
Views: 6511
Reputation: 43
This might be solved by one of the answers on library not found for -lPods but JIC it saves you some heartache trying to decide which of the 31 answers to choose, try this potentially straightforward solution.
Upvotes: 0
Reputation: 2987
It sounds like your project might be looking for the libPods.a
file but can't find it. If you build the Pods project the file should be accessible.
Go to your target summary and look under Linked Frameworks and Libraries
if the libPods.a
isn't there or is red (missing) try building the just the pods project.
Upvotes: 7