3

Here is a small doubt rather than a question.So a discussion is welcome. I recently was working on an android project and found that if a put a file with a capital letter in its name in the res/drawable then android cribs with a R.stamp error basically a build failure. Say for eg if put a file named picture.png it will build ok but not with say picTure.png . Is it some problem with android or am I missing something?

Maximus
  • 285
  • 5
  • 19
  • Refer to [this](http://stackoverflow.com/questions/6758228/why-cant-file-names-in-the-drawable-folder-contain-special-characters-or-start-w).You might get your doubt cleared,the reason for that as well. – Vivek Kalkur Sep 05 '11 at 09:05

1 Answers1

9

The file name must contain only [a-z0-9_.]. Observe the console when you build it

Zhaph - Ben Duguid
  • 26,785
  • 5
  • 80
  • 117
Pavankumar Vijapur
  • 1,196
  • 2
  • 10
  • 15