I'm using Xamarin for Android and I'm using the support libraries. The project work fine, but after updating the support repositories from 23.1.1.1
to 23.3.0
, the Resource.Designer.cs
is broken.
Note: I did delete the file, I did a complete rebuild with manually deleting the obj
and bin
folders and I made shure all of my Android packages are up to date (Android SDK Manager).
The errors are all part of the public static void UpdateIdValues()
function all basically all look like this:
'Resource.Color' does not contain a definition for 'design_textinput_error_color'
With the code:
global::Acr.UserDialogs.Resource.Color.design_textinput_error_color = global::EVM.Droid.Resource.Color.design_textinput_error_color;
Any Idea, where this error is coming from and how to fix it? Thanks for your help.