JPTest/Platforms/Android/MainActivity.cs
2025-04-30 15:31:46 -05:00

12 lines
448 B
C#

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