1

When I link a CocoaPod in a Podfile that includes further Cocopods via dependencies: How can I disable the installation of these dependencies (via the Podfile)?

Background scenario: GCDWebserver includes optional logging with CocoaLumberjack. CocoaLumberjack is nor required and only used if present in the project. Unfortunately the GCDWebserver 3.3 and newer links to CocoaLumberjack as dependency. But I don't want to include it because I'm using another logging framework.

jn-se
  • 238
  • 2
  • 9

1 Answers1

1

Unfortunately the GCDWebserver 3.3 and newer links to CocoaLumberjack as dependency

This is not the case anymore since version 3.4.1 because it created problems like yours.

Pol
  • 3,848
  • 1
  • 38
  • 55