I am new to Android development. so the external libraries (aka. dependencies) are defined in build.gradle
like
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:support-v13:21.0.0'
compile 'com.squareup.dagger:dagger:1.2.1'
compile 'com.google.code.gson:gson:2.1'
compile 'de.greenrobot:eventbus:2.4.0'
}
Is there an easy way to find out if any of these libraries has got a newer version for update? I noticed that Android Studio reminds new version available for gson
but not for other libraries.
I'm from the iOS background, CocoaPods
is the tool we use to manage external libraries. Using pod outdated
command, it is very easy to figure out which libs have new version for upgrade.