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 problem with puuting background image. Error was the same. But I solved it by removing extension of file
android:background="@drawable/sky.png" --->> android:background="@drawable/sky"
Project ---> Clean does the trick in most of the cases. It did in mine.
Accidentally moved the "values" folder outside of the "res" folder. Moved it back and it fired up!