commit 1632c3329d335bb7f13f88406852abff42bcd1ed Author: NuanRMxi <2308425927@qq.com> Date: Mon Jul 14 00:42:12 2025 +0800 first commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5930028 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +bin/ +obj/ +/packages/ +riderModule.iml +/_ReSharper.Caches/ +token.txt \ No newline at end of file diff --git a/AndroidManifest.xml b/AndroidManifest.xml new file mode 100644 index 0000000..5f28270 --- /dev/null +++ b/AndroidManifest.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/App.xaml b/App.xaml new file mode 100644 index 0000000..dd58ff5 --- /dev/null +++ b/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/App.xaml.cs b/App.xaml.cs new file mode 100644 index 0000000..7091be9 --- /dev/null +++ b/App.xaml.cs @@ -0,0 +1,14 @@ +namespace HeartRateMonitorAndroid; + +public partial class App : Application +{ + public App() + { + InitializeComponent(); + } + + protected override Window CreateWindow(IActivationState? activationState) + { + return new Window(new AppShell()); + } +} \ No newline at end of file diff --git a/AppShell.xaml b/AppShell.xaml new file mode 100644 index 0000000..6df46e2 --- /dev/null +++ b/AppShell.xaml @@ -0,0 +1,14 @@ + + + + + + diff --git a/AppShell.xaml.cs b/AppShell.xaml.cs new file mode 100644 index 0000000..5fb8711 --- /dev/null +++ b/AppShell.xaml.cs @@ -0,0 +1,9 @@ +namespace HeartRateMonitorAndroid; + +public partial class AppShell : Shell +{ + public AppShell() + { + InitializeComponent(); + } +} \ No newline at end of file diff --git a/HeartRateMonitorAndroid.csproj b/HeartRateMonitorAndroid.csproj new file mode 100644 index 0000000..55e2f4d --- /dev/null +++ b/HeartRateMonitorAndroid.csproj @@ -0,0 +1,73 @@ + + + + net8.0-android;net8.0-ios;net8.0-maccatalyst + $(TargetFrameworks);net8.0-windows10.0.19041.0 + + + + + + + Exe + HeartRateMonitorAndroid + true + true + enable + enable + + + HeartRateMonitorAndroid + + + com.companyname.heartratemonitorandroid + + + 1.0 + 1 + + + None + + 15.0 + 15.0 + 21.0 + 10.0.17763.0 + 10.0.17763.0 + 6.5 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/HeartRateMonitorAndroid.sln b/HeartRateMonitorAndroid.sln new file mode 100644 index 0000000..6219115 --- /dev/null +++ b/HeartRateMonitorAndroid.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeartRateMonitorAndroid", "HeartRateMonitorAndroid.csproj", "{D7F7A858-2624-403B-A2AE-34C0F127AE63}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D7F7A858-2624-403B-A2AE-34C0F127AE63}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D7F7A858-2624-403B-A2AE-34C0F127AE63}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D7F7A858-2624-403B-A2AE-34C0F127AE63}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D7F7A858-2624-403B-A2AE-34C0F127AE63}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/MainPage.xaml b/MainPage.xaml new file mode 100644 index 0000000..d7bc002 --- /dev/null +++ b/MainPage.xaml @@ -0,0 +1,111 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +