2

I have recently received hundreds of the following kind of error:

Ambiguous use of internal linkage declaration 'DDLogFlagError' defined in multiple modules

My podfile contains the following:

use_frameworks!
pod 'CocoaLumberjack/Swift'

What can I do?

oguz ismail
  • 1
  • 16
  • 47
  • 69
John
  • 8,468
  • 5
  • 36
  • 61

1 Answers1

2

I have solved the issue by moving "#import <CocoaLumberjack/CocoaLumberjack.h>" to the top of my xxx-Prefix.pch file. I then could remove some "#import "CocoaLumberjack.h" from my files.

John
  • 8,468
  • 5
  • 36
  • 61