0

I installed latest HockeySDK.Xamarin v4.1.0 on VS2015 using NuGet packager. But I got some error as shown.

HockeyApp.Android.TraceWriter.Initialize(crashListener);
...

CS0122  'TraceWriter' is inaccessible due to its protection level

How do I fix this error?

Eric Chan
  • 1,192
  • 4
  • 16
  • 30

1 Answers1

0

TraceWriter is not required anymore and thus not available anymore in HockeySDK-Xamarin 4.1.0. You should remove all references of TraceWriter.

Here is the document about how to integrate HockeySDK.Xamarin.

Scavenger
  • 207
  • 2
  • 9