Selector/Selector.MAUI/Platforms/Android/MainActivity.cs

12 lines
403 B
C#
Raw Normal View History

2023-01-21 16:55:51 +00:00
using Android.App;
using Android.Content.PM;
using Android.OS;
namespace Selector.MAUI;
[Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)]
public class MainActivity : MauiAppCompatActivity
{
}