Mario Quirós
03/21/2024, 10:36 PMCalculating task graph as configuration cache cannot be reused because the set of Gradle properties has changed
By looking at the error message, we noticed that something in the set of StartParams
changed from one build to the other. That is android.injected.build.abi
, which was the only diff.
The above is invalidating many of our local builds increasing our p50s. In most cases, the configuration phase needs to be executed again but the execution phase is UP TO DATE
, making the configuration times slower than the actual execution.
We are on Gradle 8.5 and AGP 8.2.2ephemient
03/21/2024, 10:49 PMSettings » Experimental » Optimize build for target device API level onlycheckbox?
Mario Quirós
03/21/2024, 10:50 PM