Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xamarin Android: Hundreds of warnings saying to check if Nuget packages are compatible

I am building an app, and I have hundred of warnings like this one: "Skipping TPProject.Resource.Drawable.ic_collapse_00000. Please check that your Nuget Package versions are compatible."

My compile/target framework is Android 8.0, my target Android version is 6.0 and my minimum Android version is 5.1. I have updated all my Nuget packages to the latest versions.

What's wrong??

Warnings

like image 393
SamyCode Avatar asked Dec 11 '17 14:12

SamyCode


1 Answers

This did got rid of the warnings:

  • update the Xamarin Extentions
  • clean solution
  • build solution

Result: all the the warnings are gone but Resource.designer.cs got modified

public static void UpdateIdValues()
{
...
lot of new rows
...
}
like image 192
Edward Koetsjarjan Avatar answered Oct 07 '22 14:10

Edward Koetsjarjan