Compiling my main target (not a test target like here) yields this error:
ld: warning: Auto-Linking supplied
\'~/Documents/my_app/MyApp/Crashlytics.frame
The Missing Link:
This error is almost always produced by not having the binary linked to the library (In this case it would be the Crashlytics.framework
):
Trying to build the target MyApp
(which includes headers with #import
will produce the error:
ld: warning: Auto-Linking supplied '../../Crashlytics.framework/Crashlytics', framework linker option at ../../Crashlytics.framework/Crashlytics is not a dylib
Link the Framework:
Fortunately, it should be easy to fix the problem simply by dragging the
Crashlytics.framework
from the Frameworks
folder in the project navigator into the list of Link Binary With Libraries
or by using the +
.