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:
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?