My drawables in android studio are turning red and are not displaying. Does anyone know what could be causing this?
Asked
Active
Viewed 1,579 times
1 Answers
4
It appears you have Version Control Integration enabled, and those files simply aren't added. If you open the Version Control panel, you should see "Unversioned Files". Expand that, and you can right-click and select "Add" to add them to your version control system.
Alternatively, do it on the command line, i.e. if you're using git:
git add <path-to-file>

Kevin Coppock
- 133,643
- 45
- 263
- 274