Skip to content

Instantly share code, notes, and snippets.

@norton287
Created January 28, 2023 01:36
Show Gist options
  • Save norton287/d7ba3141e4743579ba7ed491a0f45102 to your computer and use it in GitHub Desktop.
Save norton287/d7ba3141e4743579ba7ed491a0f45102 to your computer and use it in GitHub Desktop.
MainActivity.cs
using Android.App;
using Android.Content.PM;
namespace YourApp.Platforms.Android;
[Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density, LaunchMode = LaunchMode.SingleTop)]
public class MainActivity : MauiAppCompatActivity
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment