18 lines
403 B
C#
18 lines
403 B
C#
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();
|
|
}
|
|
}
|