Dodaj pliki projektów.

This commit is contained in:
Christopher
2024-04-04 23:32:46 +02:00
commit a6d1f7dc1d
65 changed files with 2187 additions and 0 deletions
@@ -0,0 +1,16 @@
using Android.App;
using Android.Runtime;
namespace Weather
{
[Application]
public class MainApplication : MauiApplication
{
public MainApplication(IntPtr handle, JniHandleOwnership ownership)
: base(handle, ownership)
{
}
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
}
}