How to detect when dependency library version updates exist in build.gradle in AndroidStudio project
问题 I've an android project with two modules (typical front-end app and backend). I have three build.gradle files, one in each module and one in the root. The way I've structured my dependencies is by extracting all the versions into separate variables in the root level build.gradle as such ext { // SDK and tools MIN_SDK_VERSION = 19 TARGET_SDK_VERSION = 23 COMPILE_SDK_VERSION = 23 BUILD_TOOLS_VERSION = '24' // app dependencies GOOGLE_API_CLIENT_VERSION = '1.19.0' GOOGLE_PLAY_SERVICES_VERSION =