mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-20 19:44:23 +00:00
16 lines
315 B
C#
16 lines
315 B
C#
using Android.App;
|
|
using Android.Runtime;
|
|
|
|
namespace Oqtane.Maui;
|
|
|
|
[Application]
|
|
public class MainApplication : MauiApplication
|
|
{
|
|
public MainApplication(IntPtr handle, JniHandleOwnership ownership)
|
|
: base(handle, ownership)
|
|
{
|
|
}
|
|
|
|
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
|
|
}
|