Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't process attribute android:fillColor="@android:color/white"

I downloaded an icon from google Material.io. while trying to build my project after integrating it, I ran into the error that says: Can't process attribute android:fillColor="@android:color/white"

Here is a screenshot: Can't process attribute android:fillColor="@android:color/white"

like image 759
Ojay Avatar asked Jul 13 '18 12:07

Ojay


1 Answers

In the app build.gradle add the following line within the android section:

defaultConfig{
    vectorDrawables.useSupportLibrary = true
}

Check This For Further Detail :Vector drawables overview

like image 111
Bhavesh Moradiya Avatar answered Nov 02 '22 23:11

Bhavesh Moradiya