I’m working on an Android game with Eclipse, suddenly appears lots of errors in the code. Eclipse now don’t recognize R.drawable resources ….
Console shows the following warning:
libpng warning: Ignoring gAMA chunk with gamma=0
What can I do to continue as it was?
I found the solution. seems there was an error in the import of the R file (resources file).
I replaced
import android.R
for
import package.name.R
Thanks for the help