For an app I'm working on I have to implement the Good Dynamics SDK. This has been done with an earlier app with success, but this being a Xamarin.Forms app has brought some extra difficulty. For the implementation of the SDK there's a binding on GitHub - as well as the .a library that has to be downloaded.
Binding: https://github.com/westmonroe/GoodDynamics_XamariniOSBinding
Tutorial: http://blog.westmonroepartners.com/using-good-dynamics-sdk-v1-8-x-with-xamarin-ios/
Here's the challenge with Xamarin.Forms though, to implement the SDK you have to use GDiOSDelegate instead of UIApplicationDelegate. The thing is, Xamarin Forms wants you to use FormsApplicationDelegate - and it's not possible to have multiple base classes (at least not in C#).
Any thoughts? How much complexity is in the FormsApplicationDelegate, is the only way to use Xamarin.Forms to use this?