CrossPlatformBlazorSuite/DeviceApplication/Platforms/Android/MainActivity.cs

13 lines
458 B
C#
Raw Permalink Normal View History

2024-04-20 15:05:16 +00:00
using Android.App;
using Android.Content.PM;
using Android.OS;
using Microsoft.Maui;
namespace DeviceApplication;
[Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true,
ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode |
ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)]
public class MainActivity : MauiAppCompatActivity
{
}