Namespace

This commit is contained in:
2024-10-13 12:26:48 +02:00
parent ebd5ab741c
commit ae16fe2dd7
2 changed files with 14 additions and 16 deletions

View File

@@ -1,17 +1,16 @@
using Android.App;
using Android.Runtime;
namespace Jugenddienst_Stunden {
#if DEBUG
[Application(UsesCleartextTraffic = true)]
#else
[Application]
#endif
public class MainApplication : MauiApplication {
public MainApplication(IntPtr handle, JniHandleOwnership ownership)
: base(handle, ownership) {
}
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
namespace Jugenddienst_Stunden;
#if DEBUG
[Application(UsesCleartextTraffic = true)]
#else
[Application]
#endif
public class MainApplication : MauiApplication {
public MainApplication(nint handle, JniHandleOwnership ownership)
: base(handle, ownership) {
}
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
}