A failure occurred while executing com.android.build.gradle.internal.tasks

后端 未结 19 4418
臣服心动
臣服心动 2020-12-04 23:27

I am getting this error while I am building APK.

Cause 1: org.gradle.workers.internal.DefaultWorkerExecutor$WorkExecutionException: A failure occurred while          


        
19条回答
  •  孤街浪徒
    2020-12-04 23:57

    search your code you must be referring to color in color.xml in an xml drawable. go and give hex code instead of referencing....

    Example: in drawable.xml you must have called

    android:fillColor="@color/blue"
    

    change it to android:fillColor="#ffaacc" hope it solve your problem...

提交回复
热议问题