When i imported the framework into my delegate file it is not recognising it giving ".h file not found" error. I followed the same procedure before for my another application and it is working fine. Any help would be appreciated.
-
2Something is wrong with the header paths in your project settings. – Amar Sep 25 '13 at 09:18
-
1If you upgraded to Xcode 5.1, you have to get grid of the arm64 platform target for now. Simply follow these instructions: http://stackoverflow.com/a/22370158/481621 – Martin Reichl Mar 15 '14 at 13:44
3 Answers
Make sure the Crashlytics.framework
is added to the solution. Follow the instructions of the "Crashlytics" application...
Normally the "Crashlytics.framework" directory is added to directory containing your *.xcodeproj
project file. Try adding $(SRCROOT)
to the Framework Search Path
.

- 343
- 3
- 8
-
Try adding $(SRCROOT) to the Framework Search Path. - Worked. I have changed the location of .framework to other folder. – Maulik Oct 30 '15 at 08:04
If you're experiencing this issue on a build server (e.g. Team City) make sure that you've selected Automatically on agent (if supported by VCS roots)
for your VCS Checkout mode
in your Version Control Settings
.

- 14,260
- 4
- 43
- 56
-
2I have the same problem but on Jenkins... Do you have any clues? – Shady Elyaski Oct 18 '14 at 01:09
I have reinstalled the framework, which only takes 2-3 minutes and . The problem might be caused by that you have relocated the Crashlytics.framework to another subfolder from the root directory or 64 bit transition as Martin stated.
See https://stackoverflow.com/a/28048098/936957 for details.

- 1
- 1

- 12,089
- 4
- 50
- 56