I have got this Error while building gradle Error:Execution failed for task ':app:processDebugResources'. > No slave process to process jobs, aborting

前端 未结 4 1522
梦谈多话
梦谈多话 2021-01-02 14:58

I have got this Error while building grade

Error:Execution failed for task \':app:processDebugResources\'. > No slave process to process jobs, abor

4条回答
  •  醉梦人生
    2021-01-02 15:44

    • At first go to these setting in android studio (first pic)

    • and check (second pic) "Use embedded JDK (recommended)"

    • and also add shrinkResources true in your build.gradle .

      buildTypes { release { shrinkResources true }

      }
      

    At last rebuild the project.

提交回复
热议问题