mirror of
https://github.com/OpenLogics/MewtocolNet.git
synced 2025-12-06 03:01:24 +00:00
13 lines
328 B
C#
13 lines
328 B
C#
using Android.App;
|
|
using Android.Runtime;
|
|
|
|
namespace MewExplorer;
|
|
[Application]
|
|
public class MainApplication : MauiApplication {
|
|
public MainApplication(IntPtr handle, JniHandleOwnership ownership)
|
|
: base(handle, ownership) {
|
|
}
|
|
|
|
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
|
|
}
|