Starting a Gradle Daemon, 1 busy and 6 stopped Daemons could not be reused, use --status for details

前端 未结 3 2353
走了就别回头了
走了就别回头了 2021-01-03 17:59

When I was running the gradle clean command, I got the following message

Starting a Gradle Daemon, 1 busy and 6 stopped Daemons could not

3条回答
  •  执笔经年
    2021-01-03 18:38

    Just add two lines in your gradle properties:

    org.gradle.daemon=true
    
    org.gradle.parallel=true
    

提交回复
热议问题