-
Notifications
You must be signed in to change notification settings - Fork 274
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Provide constants file for gradle dependencies #286
base: develop
Are you sure you want to change the base?
Provide constants file for gradle dependencies #286
Conversation
This change introduces single constants.gradle file that contain all versions necessary for gradle dependencies used in different modules. The goal is to avoid copy/paste and have them controlled in one place. It also contain optimization inside gradle files, such as exclude not used properties, etc ... All tests are passed localy.
Hi, Are there any additional benefits or is it just for having everything in one place? |
Hey, I use Android Studio and it takes care of such approach pretty well. I am curious why JetBrains doesn't as Android Studio is based on that. |
Speaking about software engineering, the one should not rely on any IDE when provide solution. Today it is JetBrains IDE, yesterday it was NetBeans and Eclipse, tomorrow it will be something else. |
Hey @ChernyshovYuriy thanks for your contribution and sorry for taking incredibly long getting back to you. But I am acutally with @depau, in Android Studio, the |
You can see which dependencies are out of dated. |
This change introduces single constants.gradle file that contain
all versions necessary for gradle dependencies used in different
modules. The goal is to avoid copy/paste and have them controlled
in one place.
It also contain optimization inside gradle files, such as exclude
not used properties, etc ...
All tests are passed localy.