chore: [Android] Use correct Application ctor
This commit is contained in:
Родитель
b032b1e443
Коммит
5cb0ee0465
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче