Add MAUI project
Some checks failed
Build Docker Images / test (push) Failing after 30s
Build Docker Images / build-and-push (push) Successful in 1m51s

This commit is contained in:
2025-11-23 15:01:15 +01:00
parent 7558bb80e3
commit 951855074f
37 changed files with 947 additions and 69 deletions

View File

@@ -0,0 +1,12 @@
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
{
}