chore: [Android] Use correct Application ctor

This commit is contained in:
David Oliver 2020-06-04 21:38:02 -04:00
Родитель b032b1e443
Коммит 5cb0ee0465
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -23,7 +23,7 @@ namespace Uno.UI.Demo.Droid
public class Application : Windows.UI.Xaml.NativeApplication
{
public Application(IntPtr javaReference, JniHandleOwnership transfer)
: base(new App(), javaReference, transfer)
: base(() => new App(), javaReference, transfer)
{
ConfigureUniversalImageLoader();
}
@ -40,4 +40,4 @@ namespace Uno.UI.Demo.Droid
ImageSource.DefaultImageLoader = ImageLoader.Instance.LoadImageAsync;
}
}
}
}