AppSAV/MauiApp1/Platforms/Android/MainActivity.cs

12 lines
462 B
C#
Raw Normal View History

2025-01-16 17:48:14 +01:00
using Android.App;
using Android.Content.PM;
using Android.OS;
namespace MauiApp1;
[Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, LaunchMode = LaunchMode.SingleTop,
ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode |
ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)]
public class MainActivity : MauiAppCompatActivity
{
}