1

I have integrated Fabric in my app, which is working fine .For the extension integration I have followed 2-3 links but nothing seems to be working.

Here is what I have tried:

Added these lines in the Podfile:

target 'MyApp share' do
    pod 'Fabric'
    pod 'Crashlytics'
end

Added these properties in the Info.plist file:

enter image description here

In the viewcontroller of the shared extension, I have added these lines:

required init?(coder aDecoder: NSCoder) {
        super.init(coder: aDecoder)
        Fabric.with([Crashlytics.self])
    }

Is there something I am missing for the integration?

Vadim Kotov
  • 8,084
  • 8
  • 48
  • 62
Abhishek Master
  • 192
  • 2
  • 19

1 Answers1

0

Somehow it started working , integrated it again and it started working. Not sure what went wrong

Abhishek Master
  • 192
  • 2
  • 19