HegreHotel/Platforms/Android/MainActivity.cs
2025-01-16 15:22:30 +01:00

12 lines
464 B
C#

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