ld: framework not found Crashlytics
please add $(inherited)
in FRAMEWORK_SEARCH_PATHS
build settings this worked for me.
The problem is caused by a bug in SourceTree that doesn't detect type changes in binary files. When your team mate updated Crashlytics and Fabric, source tree didn't recognise a few of the binary symlink changes it made. Solution is to do the following:
- Go to his terminal
- Navigate to his project folder (
cd ~/folder/to/project
) - Add the missing files (
git add --all
) - Commit his changes from there (
git commit -a -m "My informational commit message"
) - Push his changes (
git push origin branch_name
) - And then finally on your computer do a pull (
git pull origin branch_name
)