I am getting ready to add Google+ Login to my app. I installed the "Google Play Services Plus" component from the Component store. While I was at it, I updated the other two existing components in my project ("Android Support Library v7 AppCompat" and "HockeyApp for Android"), so I'm not sure which one of these 3 changes caused the below issue.
Anyway, I then rebuilt my project, and am now getting the following build error:
Error CS0433 The type 'MediaSessionCompat' exists in both 'Xamarin.Android.Support.Media.Compat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' and 'Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'
If I look at my references, I see both Xamarin.Android.Support.v4 and Xamarin.Android.Support.Media.Compat. Can these two NOT coexist in a project?
If I look at my pending changes in the Team Explorer tab of Visual Studio, it looks like Xamarin.Android.Support.Media.Compat.dll was indeed added to the lib folder by one of the above changes.
What should I do to fix this?