I am developing an Android app using Xamarin.
Visual Studio shows this warning, and I don\'t know what it means. I\'ve followed the instructions but I can\'t seem t
I had this error also. The error was totally my fault, I was adding some strings to my strings.xml
file and accidentally left an empty item in there
<string name=""></string>
This broke the R.java file in a really bad way, as the string/resource didn't have a name/id this is how it was created within R.java.
public static final int =0x7f080060;
As you can see it's missing its identifier. The moral of the story is: check all of your XML for any errors.