Very similar to issue #170 except I'm calling the init in AppDelegate.cs.
` [Register ("AppDelegate")]
public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate
{
public override bool FinishedLaunching (UIApplication app, NSDictionary options)
{
CachedImageRenderer.Init ();
global::Xamarin.Forms.Forms.Init ();
Microsoft.WindowsAzure.MobileServices.CurrentPlatform.Init ();
LoadApplication (new App ());
return base.FinishedLaunching (app, options);
}
}`


I've tried to uninstall and re-install all FFImageLoading packages and dependencies (because I saw it suggested elsewhere) from the common project and iOS project but didn't help.
Any idea聽@daniel-luberda ?
I have exactly this error, which of course is a major blocker
@tomcrusader @snaderi
CachedImageRenderer.Init(); in a platform specific project (important):C#
var ignore = new CircleTransformation();
@molinch We could add something like Transformations.Init(); for such cases.
@daniel-luberda That resolved it. Thank you.
Edit: That meaning your suggestion to add the CirleTransformation.
Might want to remark this in the documentation
I solved by adding a reference to missing type before LoadApplication
// workaround for iOS compilation
// @url https://github.com/UXDivers/Grial-UI-Kit-Support/issues/52#issuecomment-230461937
var workaround = typeof(CustomControls.ExtendedPicker);
as in https://github.com/UXDivers/Grial-UI-Kit-Support/issues/52
Most helpful comment
@tomcrusader @snaderi
CachedImageRenderer.Init();in a platform specific project (important):C# var ignore = new CircleTransformation();@molinch We could add something like
Transformations.Init();for such cases.