0

I am getting the error you see in the photo when I import the SKPSMTPMessage library:

enter image description here

The point is that I have no idea what it means. I have done a clean, I have added the files under the Compile Sources, and I have added the CFNetwork framework. Any idea what it means??

ChikabuZ
  • 10,031
  • 5
  • 63
  • 86
Alessandro
  • 4,000
  • 12
  • 63
  • 131

1 Answers1

1

You're getting all sorts of "duplicate symbol errors" getting spewed because the same symbols are defined in both a file you're including ("Base64Transcoder.m") and a SDK you are including (the DropBox SDK). So the compiler doesn't know which symbol you really want to use at run time.

I recommend removing "Base64Transcoder.m" from your project, at least temporarily, to see if all those duplicate symbol errors go away.

Michael Dautermann
  • 88,797
  • 17
  • 166
  • 215