Is there any way how I can setup my Android gradle project to be build using all (more) cores of my CPU?
I have MBP M1 Pro and as you can see on attached image bewow when performing Rebuild Project it is not using all my cores in the same way.
My M1 Pro has 10 CPU cores and 2 of them are low performance and 8 performance. I would like to AS use all 8 performance cores to build my project.
There is my gradle.properties setup:
org.gradle.caching=true
android.useAndroidX=true
android.enableR8.fullMode=true
org.gradle.parallel=true
org.gradle.daemon=true
org.gradle.configureondemand=true
I was little bit playing also with org.gradle.workers.max and org.gradle.parallel.threads but I didn't see any change in CPU usage at all. But maybe I just misunderstood how it works and set incorrect values.

