AppDoebeln/TourismusDöbeln/Platforms/Android/MainActivity.cs
2024-08-30 06:36:09 +02:00

12 lines
458 B
C#

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