Statistiques
| Branche: | Révision:

inraetemplate / INRAETemplate / Platforms / Android / MainApplication.cs @ 7b67ff55

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

1 fa2aa88f ajournaux
using Android.App;
2
using Android.Runtime;
3
4
namespace INRAETemplate;
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
}