-
Notifications
You must be signed in to change notification settings - Fork 3
Description
I am using the latest version of Xamarin Forms, and all Nuget packages and I am building for Android Oreo 8.x When I add the following XAML I get errors for both BorderColor and FillColor indicating that neither is a bindable property:
XAML
<shapes:Circle> <shapes:Circle.Paint> <shapes:SSPaint BorderColor="Blue" FillColor="Red" BorderWidth="1" /> </shapes:Circle.Paint> </shapes:Circle>
Error Message
Severity Code Description Project File Line Suppression State Error Position 196:53. No property, bindable property, or event found for 'BorderColor', or mismatching type between value and property. PlanitUX.Client.Forms C:\Dev\PlanitUX\PlanitUX\PlanitUX.Client.Forms\Views\TestPage.xaml 196
I have downloaded the project source code and successfully run the Android test app using these properties. However, Nuget Manager reports 24 packages that are out of date. Running Nuget Update does not complete and fails with the following message:
Severity Code Description Project File Line Suppression State Error Could not install package 'Xamarin.Android.Support.Animated.Vector.Drawable 27.0.2.1'. You are trying to install this package into a project that targets 'MonoAndroid,Version=v8.0', but the package does not contain any assembly references or content files that are compatible with that framework. For more information, contact the package author.
Any ideas?
Michael