Files
dotnet-maui-workshop/MonkeyFinder/Platforms/Android/MainActivity.cs
2024-04-22 16:48:36 +02:00

11 lines
401 B
C#

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