This repository has been archived on 2025-05-14. You can view files and clone it, but cannot push or open issues or pull requests.
2022-08-11 17:09:32 -04:00

11 lines
400 B
C#

using Android.App;
using Android.Content.PM;
using Android.OS;
namespace Oqtane.Maui;
[Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)]
public class MainActivity : MauiAppCompatActivity
{
}