10

I'm getting that "Framework not found GoogleDataTransportCCTSupport" error after pod update. I have tried many clean build folder and project. But It still stays in there. What should I do?

iamburak
  • 3,508
  • 4
  • 34
  • 65

1 Answers1

28

Go to your project's target Build Settings > Search GoogleDataTransportCCTSupport.

You will see Other Linker Flags.

Remove these lines below:

-framework
GoogleDataTransportCCTSupport

After clean and build again, It should work as expected.

iamburak
  • 3,508
  • 4
  • 34
  • 65
  • The problem is that when we do a ```pod install``` this shows up again. – Oliver Dixon Aug 17 '20 at 13:34
  • So I guess this happens because pods upgraded to a newer version of firebase that doesnt use GoogleDataTransportCCTSupport but the linker flags do not reflect this? – dubbeat Aug 20 '20 at 08:47