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?
Asked
Active
Viewed 3,206 times
1 Answers
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
-
Even though you're right, this doesn't explain anything nor does it answer his question. – Gezzasa Jun 08 '18 at 09:52