mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
23 lines
600 B
C#
23 lines
600 B
C#
|
|
using Android.App;
|
||
|
|
using Android.Content.PM;
|
||
|
|
using Android.OS;
|
||
|
|
using Android.Views;
|
||
|
|
using Android.Widget;
|
||
|
|
|
||
|
|
namespace Marechai.App.Droid;
|
||
|
|
|
||
|
|
[Activity(
|
||
|
|
MainLauncher = true,
|
||
|
|
ConfigurationChanges = global::Uno.UI.ActivityHelper.AllConfigChanges,
|
||
|
|
WindowSoftInputMode = SoftInput.AdjustNothing | SoftInput.StateHidden
|
||
|
|
)]
|
||
|
|
public class MainActivity : Microsoft.UI.Xaml.ApplicationActivity
|
||
|
|
{
|
||
|
|
protected override void OnCreate(Bundle? savedInstanceState)
|
||
|
|
{
|
||
|
|
global::AndroidX.Core.SplashScreen.SplashScreen.InstallSplashScreen(this);
|
||
|
|
|
||
|
|
base.OnCreate(savedInstanceState);
|
||
|
|
}
|
||
|
|
}
|