Files
LoopFit/LoopFit/Platforms/Android/MainActivity.cs
T
2026-08-25 22:42:01 +02:00

12 lines
426 B
C#

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