Yas
Yas

Reputation: 71

Crashlytics.h not found Xcode 8.0

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?

Upvotes: 1

Views: 2315

Answers (1)

William Cross
William Cross

Reputation: 312

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

Upvotes: 1

Related Questions