Crashlytics file not found

Recently opened a project that I had compiled and submitted to Apple.

I haven't touched it for a couple of months but I'm getting this odd compile error at:

#import <Crashlytics/Crashlytics.h>

The error reads:

'Crashlytics/Crashlytics.h' file not found

Clearly the framework can't be found but I'm puzzled as to why, when the project was working a few months ago, it's suddenly stopped.

Any suggestions why?

Xcode: 4.6.3 Mac OS X: 10.8.4


Just add $(SRCROOT) to the Framework Search Paths in Project Build Settings (Search Paths).

Crashlytics installation process drops its Crashlytics.framework to your project folder (or creates the symlink).

If you moved Crashlytics.framework somewhere deeper in the project folder hierarchy - set 'recursive' to the right or just point directly to its parent folder in Header Search Paths:

$(SRCROOT)/Path/to/the/folder/containing/Crashlytics.framework


Delete frameworks from you project and disk. Check that you have the newest version of Fabric plugin.

Copy frameworks from plugin folder to desktop with this commands:

ditto -xk ~/Library/Caches/com.crashlytics.mac/5b91b14e832a7b1c29441ec5ba109810/sdks/ios/com.twitter.crashlytics.ios-default.zip ~/Desktop/

ditto -xk ~/Library/Caches/com.crashlytics.mac/5b91b14e832a7b1c29441ec5ba109810/sdks/ios/io.fabric.sdk.ios-default.zip ~/Desktop/

Add frameworks from desktop to your project.

Info from: https://twittercommunity.com/t/error-upgrading-from-crashlytics-on-ios/36196/2


I'd recommend just using CocoaPods to add the Crashlytics framework. No need to care about paths anymore.

Podfile:

pod 'Crashlytics', '~> 3.4.1'

Script Build Phase for dSYM Upload:

./Pods/Crashlytics/iOS/Crashlytics.framework/run <your_crashlytics_id>

Import:

#import <Crashlytics/Crashlytics.h>

For me, this worked:

Remove the fabric and crashlytics frameworks from your project, and delete the files from the disk for our project.

Comment the lines in your appdelegate.m file, if you added them for the following:

import Fabric/Fabric.h
import Crashlytics/Crashlytics.h

and

[Fabric with:@[CrashlyticsKit]];

In the fabric app, choose "New app", and select your Xcode project file

Recopy the build script and build as instructed. The build step is why you needed to comment the lines above-- it won't work if you leave those lines in.

After the build script runs, it will prompt you to drag the frameworks from the app window into your project navigator. This will copy the latest versions of he frameworks (which include the .h files) into your project

I have tried manually downloading, and copying from other projects, but this is the only way I could recover after losing the frameworks files for an app.


In my case, the Framework was in the project folder, but not in the Project Navigator. I dragged it to the project and everything worked fine.