I am having a strange error that I can not resolve in class R.java in my android application
the error is in the following line
public static final class string {
public static final int =0x7f05002f;
because it has no variable after the int
can anyone help me please with this error ?
check your strings.xml file.It seems like you have saved some value without assigning any name to that.
Look for an entry not having any
nameattribute. something like<string>8</string>, either remove that or assign a name attribute to that like<string name="anyname">8</string>