LSFE/LSFE.MobApp/Platforms/Android/MainActivity.cs
2026-07-30 10:31:04 +08:00

15 lines
480 B
C#

using Android.App;
using Android.Content.PM;
using Android.OS;
namespace LSFE.MobApp
{
[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
{
}
}