Files
EmptyMauiApp/MauiApp/Platforms/Android/MainActivity.cs
2023-10-18 19:02:51 +02:00

10 lines
395 B
C#

using Android.App;
using Android.Content.PM;
using Android.OS;
namespace MauiApp;
[Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)]
public class MainActivity : MauiAppCompatActivity
{
}