Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Issue with Crashlytics and Answers kit

I am using Crashlytics in my app for tracking crashes and Answers kit too for custom events. I am integrating the frameworks into my project using pod file. But I am getting a linking error while both pods are added like

pod 'Fabric'
pod 'Answers'
pod 'Crashlytics'

When I remove one from Answers and Crashlytics, then all is fine.

Error is :

Apple Mach-O Linker (Id) Error Linker command failed with exit code 1 (use to see invocation)

Any ideas?

like image 713
Dev Avatar asked Jul 19 '17 08:07

Dev


1 Answers

Mike from Fabric here. Remove the Answers pod reference. This should be your setup for both Answers and Crashlytics.

pod 'Fabric'
pod 'Crashlytics'

If you're using Crashlytics, Answers is included by default and that's why you're getting the conflict.

like image 140
Mike Bonnell Avatar answered Oct 01 '22 22:10

Mike Bonnell