LANCommander/LANCommander.Client/Platforms/Android/MainActivity.cs
2024-05-09 20:44:40 -05:00

11 lines
426 B
C#

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