Files
SteUP_Dotnet/SteUp.Maui/Platforms/Android/MainActivity.cs
2026-02-06 10:04:36 +01:00

15 lines
452 B
C#

using Android.App;
using Android.Content.PM;
namespace SteUp.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
{
}
}