Files
WorkTime/WorkTime.Mobile/Platforms/Android/MainActivity.cs
2025-11-12 11:49:15 +01:00

10 lines
469 B
C#

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