What is the best way or a good way to handle dependency versioning across multiple projects. Each project has its independent repo and exposes an aar, they are not modules in a single project.
I am thinking of moving the common dependencies to a common project and expose them as api. The problem is that now, all projects need to depend on this common library, which is not necessarily what the business requires.
Any recommendation?
Pablichjenkov
01/23/2023, 5:40 PM
Perhaps making an internal gradle convention plugin that has a file with the versions and apply them to each individual project🤔