Currently, the project manages dependencies by declaring them directly within the build.gradle file. This approach, while functional, can become cumbersome and difficult to maintain as the project grows and the number of dependencies increases.
This feature proposes migrating dependency management to Version Catalogs. Version catalogs are a centralized location within the Gradle build system to store and manage all project dependencies.
Checklist
Feature description
Currently, the project manages dependencies by declaring them directly within the
build.gradle
file. This approach, while functional, can become cumbersome and difficult to maintain as the project grows and the number of dependencies increases.This feature proposes migrating dependency management to Version Catalogs. Version catalogs are a centralized location within the Gradle build system to store and manage all project dependencies.
Why do you want this feature?
Version catalogs offer several advantages over declaring dependencies directly in build.gradle: https://developer.android.com/build/migrate-to-catalogs
Additional information
No response