When I run my MainActivity, I get this error:
System.TypeLoadException: Could not load type 'Android.Gms.Common.Apis.GoogleApiClient/IConnectionCallbacksInvoker' from assembly 'Xamarin.GooglePlayServices.Base, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null'.
I tried uninstalling and reinstalling the Xamarin.GooglePlayServices.Base but it does not help me.
Here the MainActivity:
using Android.App;
using Android.Widget;
using Android.OS;
namespace App
{
[Activity(Label = "Befy", MainLauncher = true, Icon = "@drawable/icon")]
public class MainActivity : Activity
{
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);
SetContentView(Resource.Layout.Main);
}
}
}
Any ideas that can help me ?, I do not know if you will need any reference or something, thanks!