I'm attempting to get HockeyApp to work in my iOS Xamarin Forms app. I installed the iOS HockeyApp component (v4.1.0), and the getting started information for shows the following:
public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions)
{
var manager = BITHockeyManager.SharedHockeyManager;
manager.Configure("Your_App_Id");
manager.StartManager();
}
When I try this, BITHockeyManager.SharedHockeyManager
is null.
I've tried to wrap these lines in HockeyApp.Setup.EnableCustomCrashReporting()
and Setup.EnableCustomCrashReporting()
as is referenced in this post, but Setup
doesn't exist in the namespaces I have.
What am I missing to properly enable HockeyApp in iOS?