Syntax error on token "123", invalid VariableDeclaratorId

0

I'm having an error in the class R.java

    
asked by anonymous 13.07.2016 / 15:56

1 answer

0

These variables in the static and final class drawable within the R class are references to files of the same name in the res/drawable folder of your project. See if you have no file named 123 in this folder, since the reference will fail since in Java you can not have a variable name that starts with number.

    
13.07.2016 / 16:03