Xamarin iOS:检查设备上是否安装了 Google fit 应用程序

Xamarin iOS: Check if Google fit app is installed on the device

有什么方法可以检查 'Google Fit' 应用程序是否安装在 iOS 设备上?

我试过了:

UIApplication.SharedApplication.CanOpenUrl(new NSUrl("FitApp://com.google.fit"));

这总是returns错误

您需要将 FitApp 添加到 Info.plist 中的 LSApplicationQueriesSchemes 数组(注意,没有冒号)。

然后,您可以在代码中检查是否可以打开 FitBit: - 注意冒号

UIApplication.SharedApplication.CanOpenUrl(new NSUrl("FitApp:"));