Web-Development-with-Blazor.../Chapter18/MauiDemo/NETMauiApp/Platforms/Android/MainApplication.cs

16 lines
369 B
C#
Raw Normal View History

2023-02-17 15:28:17 +01:00
using Android.App;
using Android.Runtime;
namespace NETMauiApp
{
[Application]
public class MainApplication : MauiApplication
{
public MainApplication(IntPtr handle, JniHandleOwnership ownership)
: base(handle, ownership)
{
}
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
}
}