Statistiques
| Branche: | Révision:

sicpaconnexions / SICPA_Connexions / Platforms / Android / MainApplication.cs @ 87e7d061

Historique | Voir | Annoter | Télécharger (392 octets)

1 87e7d061 ajournaux
using Android.App;
2
using Android.Runtime;
3
4
namespace SICPA_Connexions
5
{
6
    [Application]
7
    public class MainApplication : MauiApplication
8
    {
9
        public MainApplication(IntPtr handle, JniHandleOwnership ownership)
10
            : base(handle, ownership)
11
        {
12
        }
13
14
        protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
15
    }
16
}