I am developing an application from which I use the Xam.Plugins.Settings plugin in an application for Android / IOS / Windows Phone.
When I try to run the application it presents the following error:
"System.NotImplementedException: This functionality is not implemented in the portable version of this assembly. You should reference the NuGet package from your main application project in order to reference the platform-specific implementation."
Introducing the error in the following line of code:
Return CrossSettings.Current;
I have seen instructions on the internet that state that I should install the Xam.Plugins.Settings plugin for all platforms. But I am not able to do this for the Android platform because it presents this error when I try to install:
"Severity Code Description Project File Line Suppression State
Error Unable to resolve dependencies. 'Xamarin.Android.Support.v4 23.0.1.3' is not compatible with 'Xamarin.Android.Support.Design 23.0.1.3 constraint: Xamarin.Android.Support.v4 (> = 23.0.1.3)', 'Xamarin.Forms 2.2 .0.45 constraint: Xamarin.Android.Support.v4 (= 23.3.0) '. 0 "
Does anyone have any idea how I can resolve this?