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