Alper
Alper

Reputation: 3993

Cocoapods Testflight

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

Answers (2)

Fergal Mohan
Fergal Mohan

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.

  1. Select the main project from the list (that appears in the project navigator when you open the .xcworkspace file).
  2. Choose Product > Scheme > Edit Scheme.
  3. Select the "Build" item in the left hand pane.
  4. Check the box that says "Find Implicit Dependencies".
  5. Clean and Rebuild.

Upvotes: 0

Joe
Joe

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

Related Questions