Is buildSrc is the recommended approach to create custom gradle plugins and scripts for Android projects?
👌 2
e
ephemient
01/23/2022, 11:28 AM
I would say includeBuild is recommended over buildSrc now
a
Arun Joseph
01/23/2022, 11:38 AM
Is it mainly due to the speed up of incremental builds?
e
ephemient
01/23/2022, 11:48 AM
incremental, caching, only needs to be built when referenced by modules (as opposed to always built first), can split up into multiple modules for different purposes, run tests and other tasks independently