Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
MainApplication.cs
1using Android.App;
2using Android.Runtime;
3
4namespace NeuroAccessMaui
5{
6#if DEBUG
7 [Application(UsesCleartextTraffic = true)]
8#else
9 [Application]
10#endif
11 public class MainApplication(IntPtr handle, JniHandleOwnership ownership) : MauiApplication(handle, ownership)
12 {
13 protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
14 }
15}