You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
320 B

  1. using Android.App;
  2. using Android.Runtime;
  3. namespace CircleViewerMaui;
  4. [Application]
  5. public class MainApplication : MauiApplication
  6. {
  7. public MainApplication(IntPtr handle, JniHandleOwnership ownership)
  8. : base(handle, ownership)
  9. {
  10. }
  11. protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
  12. }