Files
DiunaBI/src/Backend/DiunaBI.UI.Mobile/Platforms/Android/MainActivity.cs
Michał Zieliński 951855074f
Some checks failed
Build Docker Images / test (push) Failing after 30s
Build Docker Images / build-and-push (push) Successful in 1m51s
Add MAUI project
2025-11-23 15:01:15 +01:00

12 lines
436 B
C#

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