Good Day. I was creating a Xamarin.Forms Portable application that enables the User to CRUD record of an Employee and was able to run it many times. But when I run it again, there's an error saying
'Resource.Attribute' does not contain a definition for 'actionBarSize'
It is located on the Android part of my program.
This line of code causes it and I don't have a clue why.
public static void UpdateIdValues()
{
global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionBarSize = global::XamarinFormsDemo.Droid.Resource.Attribute.actionBarSize;
}
Please help me.