Crashlytics and Answers suite issue

I am using Crashlytics in my application to track crashes and response sets also for custom events. I am integrating frameworks into my project using a pod file. But I am getting a linking error while both containers are being added as

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

      

When I remove one of the answers and Crashlytics, everything is fine.

Mistake:

Apple Mach-O Linker (Id) error linker error with exit code 1 (use to view the call)

Any ideas?

+3


source to share


2 answers


Mike from Cloth. Remove the link to revoke responses. This should be your setup for Responses and Crashlytics.

pod 'Fabric'
pod 'Crashlytics'

      



If you are using Crashlytics Answers are enabled by default and why you are getting a conflict.

+17


source


Try this: Go to Build Settings β†’ Enable Bitcode to None. or Clean Xcode with β‡§βŒ˜K (Command Shift K) and rebuild the project.



0


source







All Articles