0

I'm getting "invalid resource directory name" error at values-normal-mdpi-land directory. What is interesting everything was fine until I started working on a project in different computer.

Maybe some sdk tools are missing?

What can cause this?

I have also values-normal-mdpi folder in my project which doesn't throw any error.

Amit Vaghela
  • 22,772
  • 22
  • 86
  • 142
dammarpol
  • 77
  • 1
  • 13

2 Answers2

0

Try doing

Project --> Clean

check https://developer.android.com/guide/topics/resources/available-resources.html

Update to latest android studio ,by default it is providing values and drawable .

so if you update studio it may resolve your problem.

Amit Vaghela
  • 22,772
  • 22
  • 86
  • 142
0

I think you have that you can still see the name of your folder.

According to the doc, you must respect the order of priority of conditions : land must be placed before mdpi

doc android

I think you must have values-land-mdpibecause normal and mdpi are duplicate (normal = mdpi).

Marl Ene
  • 24
  • 8