Alessandro
Alessandro

Reputation: 4100

Undefined symbols for architecture armv7: duplicate files

I received this error when I imported the DropboxSDK:

enter image description here

Is is very strange, but I noticed that both the dropbox sdk header folder and one of the .h files I am using in another part of my app have this file: Base64Transcoder

I tried changing my other one to Base64Transcoder2, but the error persists. What might the solution be to this problem?

Upvotes: 1

Views: 277

Answers (1)

Obj-Swift
Obj-Swift

Reputation: 2942

You probably need to add that .m class file to Project->Target ->Build Phases -> Compile Sources.

EDIT:

This is a good answer. Undefined symbols for architecture armv7

Upvotes: 2

Related Questions