Search code examples
iosxcodeskpsmtpmessage

SKPSMTPMessage library


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??


Solution

  • 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.