Home > Software design >  Why does my "include SwiftyDropbox" cause a build error for my iOS Xcode Swift project?
Why does my "include SwiftyDropbox" cause a build error for my iOS Xcode Swift project?

Time:03-18

I added the DropBox SDK/API package to my existing Xcode Swift app project and get this build error:
"No such module 'SwiftyDropobx'"

However, the package is there in my Package Dependencies....

enter image description here

CodePudding user response:

Go to TARGETS >> Build Phases >> Link Binary With Libraries press ( ) select SwiftyDropbox Add.

Link Binary With Libraries should now list it.

Build.

  • Related