I'm trying to apply tint for ImageButton that uses vector drawable:
<android.support.v7.widget.AppCompatImageButton
android:id="@+id/flashlight_button"
app:srcCompat="@drawable/ic_flash_off_black_24dp"
android:tint="@color/icon_states_color"
/>
This will work Lollipop +, but will crash on Kitkat.
How should do ColorList tint for Kitkat in app compat world?