1

I am trying to build an old project in Xcode 8.0 and getting the error at:

#import <Crashlytics/Crashlytics.h>

Error is:

'Crashlytics/Crashlytics.h' file not found

I am very new in iOS Apps development. Just installed Xcode 8.0 and opened the old project.

Any suggestions pleaese?

Yas
  • 71
  • 1
  • 10

1 Answers1

1

Try following these instructions to re-install crashlytics correctly into your project. Most of the time these errors occur if the it wasn't installed/configured correctly:

https://fabric.io/kits/ios/crashlytics/install

EDIT If you are not using cocoapods you can install manually following these instructions:

https://fabric.io/kits/ios/crashlytics/manual-install

William Cross
  • 347
  • 1
  • 9
  • Thank you for the answer. Should I first remove the framework from the Xcode Linked Frameworks and Libraries and delete from the project folder too? – Yas Apr 27 '17 at 06:23
  • For best results it would be a good idea to delete the old and re-install, just to make sure you don't get any clashes. Don't forget to upvote my answer and mark it as answered if this helps :) – William Cross Apr 27 '17 at 06:35