How to use all CPU cores/threads when running Android Studio gradle build?

前端 未结 3 699
青春惊慌失措
青春惊慌失措 2021-01-30 23:13

I\'m looking for a parameter or configuration in Android Studio / Gradle, that can set the build so it will use all of my CPU cores during build time. i.e. If I have a quad-co

3条回答
  •  孤独总比滥情好
    2021-01-30 23:27

    Update for accepted answer:

    Since gradle uses Worker API you need to use

    org.gradle.workers.max
    

    instead of

    org.gradle.parallel.threads
    

    Link to the doc

提交回复
热议问题