Files
SlipItIn/SlipItIn/Platforms/Android/MainActivity.cs
2026-07-19 21:18:10 +02:00

11 lines
432 B
C#

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