fix dependcy versions: iOS building

This commit is contained in:
2024-04-16 17:17:22 -05:00
parent f85dc8effc
commit 54de266a6c
7 changed files with 23 additions and 22 deletions
+2 -4
View File
@@ -1,15 +1,13 @@
using UIKit;
using System;
namespace qController.iOS
{
public class Application
{
// This is the main entry point of the application.
static void Main(string[] args)
{
// if you want to use a different Application Delegate class from "AppDelegate"
// you can specify it here.
UIApplication.Main(args, null, "AppDelegate");
UIApplication.Main(args, null, typeof(AppDelegate));
}
}
}