Hi!
I just added GPS(ICS) support to add AdMob adverts and I'm getting the following error when compiling :
1>C:\Program Files (x86)\MSBuild\Xamarin\Android\Xamarin.Android.Common.targets(1054,3): error : Duplicate managed type found! Mappings between managed types and Java types must be unique. First Type: 'Android.Support.V4.App.FragmentManager/IOnBackStackChangedListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'; econd Type: 'Android.Support.V4.App.FragmentManager/IOnBackStackChangedListenerImplementor, Mono.Android.Support.v4, Version=0.0.0.0, Culture=neutral, PublicKeyToken=84e04ff9cfb79065'
I understand that I can't use Xamarin.Android.Support.v4 and Mono.Android.Support.v4 at the same time? Right now I'm not including none of them in my references, so they're probably included by other dlls. How can I know which one are including them?
Thanks! Kak