WasimSafdar
WasimSafdar

Reputation: 1132

No such file and directory found Xcode 7

I embedded evernote SDK into my application but it was not working. Therefore, I decided to delete it from my code and removed all related frameworks and everything but after building my application, it is my code still tries to refer evernote SDK folder. I checked my "Copy Bundle Resources" and "Link Binaries with Libraries". Everything seems Okay. I want to remove this error without adding evernote SDK folder.

enter image description here

Help me please?

Upvotes: 1

Views: 6246

Answers (4)

Alok
Alok

Reputation: 25938

GoTo Build Phase > Search missing framework name > you will see same framework name also available on Copy Bundle Resources remove this framework from here > Done

I had the same issue after this process working fine for me.

Upvotes: 2

Abhinav
Abhinav

Reputation: 38162

Try doing following:

  1. Product -> Clean and build folder
  2. Go to finder -> library -> Developer -> Xcode -> Derived data delete that folder

Also, see if evernote SDK was ever linked to your test target. If so, you would need to delete if from there as well.

Upvotes: 4

Laserbeak
Laserbeak

Reputation: 78

It looks like as part of build, you have a step to copy that particular SDK and it's no longer there. You need to edit your build steps.

Upvotes: 0

Cliff Ribaudo
Cliff Ribaudo

Reputation: 9039

  1. Trying cleaning the build folder. Drop Down the product menu and hold down ALT and Clean will change to clean the build folder.
  2. Check Build Settings Linking section.
  3. Check Build Phases Link Binary with Binaries section and Copy Bundle Resources section.

Upvotes: 2

Related Questions