3

安装 AppCenter SDK 并尝试使用此方法在 Xamarin 表单中对其进行初始化后:

AppCenter.Start("ios={Your App Secret};android={Your App Secret};uwp={Your App Secret}", typeof(Analytics), typeof(Crashes));

我收到了这个错误:

The type or namespace 'Start' does not exist in the namespace 'AppCenter' (are you missing an assembly reference?)
4

2 回答 2

11

即使我using Microsoft.AppCenter;出于某种原因导入它也没有解决。

我不得不使用:

Microsoft.AppCenter.AppCenter.Start(...);
于 2018-04-17T20:34:24.627 回答
2

对于 Xamarin Forms 应用程序,请确保将包安装在引用任何库的所有项目中。您看到的错误主要是因为未将包添加到所有项目中。

于 2018-04-18T15:56:51.650 回答