Files
MVVMProject_MAUI/ModelViewViewModelProject/Platforms/Android/MainActivity.cs
T
2024-11-11 19:39:56 +01:00

12 lines
432 B
C#

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