我试图让 HockeyApp 在我的 iOS Xamarin Forms 应用程序中工作。我安装了 iOS HockeyApp 组件 (v4.1.0),其入门信息显示如下:
public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions)
{
var manager = BITHockeyManager.SharedHockeyManager;
manager.Configure("Your_App_Id");
manager.StartManager();
}
当我尝试这个时,BITHockeyManager.SharedHockeyManager
它是空的。
我已尝试将这些行包含在本文HockeyApp.Setup.EnableCustomCrashReporting()
中Setup.EnableCustomCrashReporting()
引用的内容中,但在我拥有的命名空间中不存在。Setup
在 iOS 中正确启用 HockeyApp 我缺少什么?