Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

drawable-xdpi folder is a invalid resource directory name [closed]

Tags:

android

I have a android project which was automatically configured by my Eclipse IDE. Inside the res folder of the project were 3 folders drawable-ldpi, drawable-mdpi, and drawable-hdpi. I wish to support xdpi as well so I added the folder in manually and I receive a "invalid resource directory name" problem. I don't know if the following information is relevant but from searching it might be. My minimum supported sdk is 10 and targeted it 15.

like image 477
Edmond Chhung Avatar asked Dec 04 '22 00:12

Edmond Chhung


1 Answers

It's a simple spelling mistake. Rename "xdpi" to "xhdpi". You're missing the "h"

like image 97
Anup Cowkur Avatar answered Jan 25 '23 23:01

Anup Cowkur