mirror of
https://github.com/PacktPublishing/Web-Development-with-Blazor-Second-Edition.git
synced 2025-12-06 05:32:03 +01:00
16 lines
319 B
C#
16 lines
319 B
C#
|
|
using Android.App;
|
|||
|
|
using Android.Runtime;
|
|||
|
|
|
|||
|
|
namespace BlazorHybridApp;
|
|||
|
|
|
|||
|
|
[Application]
|
|||
|
|
public class MainApplication : MauiApplication
|
|||
|
|
{
|
|||
|
|
public MainApplication(IntPtr handle, JniHandleOwnership ownership)
|
|||
|
|
: base(handle, ownership)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
|
|||
|
|
}
|