Is buildSrc is the recommended approach to create ...
# android
a
Is buildSrc is the recommended approach to create custom gradle plugins and scripts for Android projects?
👌 2
e
I would say includeBuild is recommended over buildSrc now
a
Is it mainly due to the speed up of incremental builds?
e
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
👍 1