I have MyApp
iOS app with a dependent framework MyAppServices.framework
built in Xcode. I would like to use Fabric Answers
, via Crashlytics
to send Custom Events
to the Answers service.
I linked my both MyApp
and MyAppServices.framework
with the Fabric
and Crashlytics
frameworks, and it builds fine, however, although Crashlytics
is sending information to the web service, no calls to Answers.logCustomEvent
are received.
On app start up I get a number of messages taking this form in the console:
objc[26265]: Class Answers is implemented in both /Users/daniel/Library/Developer/Xcode/DerivedData/MyApp-dcrkrnbsowaakndgbzerrmisdgbi/Build/Products/Debug-iphonesimulator/MyAppServices.framework/MyAppServices (0x10fea9488) and /Users/danielasher/Library/Developer/CoreSimulator/Devices/E00AEB21-599A-4FDF-B97B-56CEE56963EC/data/Containers/Bundle/Application/326C84A8-1CC9-4F75-86AF-253C98580A07/MyApp.app/MyApp (0x10f752ea8). One of the two will be used. Which one is undefined.
How can I successfully integrate Fabric Answers to my project?