Fix possible crashes due to misplaced vector drawables. (#1894)

Vector drawables do *not* belong in dpi-specific subfolders. They should
always be placed in the general "res/drawable" folder. This can actually
cause crashes on certain devices.
This commit is contained in:
Dmitry Brant 2018-09-10 04:19:08 -04:00 committed by Josephine Lim
parent 099dce4f95
commit 91f3f2e505
6 changed files with 0 additions and 0 deletions

View file

@ -1,11 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:state_pressed="true"
android:drawable="@color/pressed_button_light" />
<item
android:state_focused="true"
android:drawable="@color/focused_button_light"
/>
<item android:drawable="@android:color/transparent" />
</selector>