first commit

This commit is contained in:
2025-07-14 00:42:12 +08:00
commit 1632c3329d
45 changed files with 2714 additions and 0 deletions

15
Platforms/iOS/Program.cs Normal file
View File

@ -0,0 +1,15 @@
using ObjCRuntime;
using UIKit;
namespace HeartRateMonitorAndroid;
public class Program
{
// 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, typeof(AppDelegate));
}
}