If starting new app with min api 21 should I use `...
# android
z
If starting new app with min api 21 should I use
vectorDrawables.useSupportLibrary = true
in gradle and
srcCompat
on
ImageView
for vector images or is it ok to use just
android:src
? Are there any fixes for older Android versions in compat version like for
Fragments
? Maybe @jw can help me with background info on that? Thanks!
stackoverflow 2
t
Yes there is fixes and it's recommended to still use it. Some drawable won't render correctly in API21/22.
👍 1