Web-Development-with-Blazor.../Chapter18/MauiDemo/NETMauiApp/Platforms/Android/MainActivity.cs
2023-02-17 15:28:17 +01:00

11 lines
416 B
C#

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