Initial commit
This commit is contained in:
17
Jugenddienst Stunden/Platforms/Android/MainApplication.cs
Normal file
17
Jugenddienst Stunden/Platforms/Android/MainApplication.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user