I just received an ANR report in the Google Play Console of an app that a user has shown to me using my app.
android.content.res.Resources$NotFoundException: File res/drawable/ic_circular_way.xml from drawable resource ID #0x7f02006a. If the resource you are trying to use is a vector resource, you may be referencing it in an unsupported way. See AppCompatDelegate.setCompatVectorFromResourcesEnabled() for more info.
...
Caused by: org.xmlpull.v1.XmlPullParserException: Binary XML file line #1: invalid drawable tag vector
I guess it means that I use drawables in the form of a vector.
In the gradle I have already defined the use of
defaultConfig {
...
vectorDrawables.useSupportLibrary = true
...
}
That error comes from Android 4.4 (KitKat)