Common problem I\'m sure, but I can\'t figure it out. In my AndroidManifest.xml and main.xml I\'m getting the no resource found that matches the given name. I\'ve double c
I had the same issue and tried most of the solutions mentioned above and they did not fix it..
At then end, I went to my .csproj
file and viewed it in the text editor, I found that my xml file that I put in the /Drawable
was not set to be AndroidResouces
it was just of type Content
.
Changing that to be of type AndroidResouces
fixed the issue for me.