Provide constants file for gradle dependencies#286
Provide constants file for gradle dependencies#286ChernyshovYuriy wants to merge 2 commits intomagnusja:developfrom
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.