Files
marketally.mopups/SampleMaui/Platforms/Android/MainActivity.cs
2022-02-19 20:27:07 +02:00

10 lines
357 B
C#

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