← Back to Files
MainActivity.cs
using Android.App;
using Android.Content.PM;
namespace KaiChat.Mobile;
[Activity(
Theme = "@style/Maui.SplashTheme",
MainLauncher = true,
Exported = true,
LaunchMode = LaunchMode.SingleTop,
ConfigurationChanges =
ConfigChanges.ScreenSize |
ConfigChanges.Orientation |
ConfigChanges.UiMode |
ConfigChanges.ScreenLayout |
ConfigChanges.SmallestScreenSize |
ConfigChanges.Density)]
public sealed class MainActivity : MauiAppCompatActivity
{
}