0

I'm trying to add pod support to custom framework. I have added Speechkit as dependency in pod spec. while running pod lib lint, i'm getting following error message

Error Message

Thanks in advance

rmaddy
  • 298,130
  • 40
  • 468
  • 517
  • Cocoapods is meant to provide easy support for dynamic frameworks being used during runtime. The problem described states, that SpeechKit is a static library which can't be used to provide a dynamic framework. The difference is good described here: http://stackoverflow.com/questions/15331056/library-static-dynamic-or-framework-project-inside-another-project – t0day May 23 '16 at 05:26
  • What is your code spec ? and Which version of cocoa pods are using? – Jigar Tarsariya May 23 '16 at 05:28

1 Answers1

0

I'm not very sure about that, but it seems that until the static library dependency you rely on is changed into a dynamic framework, you have no other choice than waiting for it to happen : check this issue.

n3wbie
  • 1,014
  • 8
  • 24