Force Android Studio to Update Maven Snapshot Dependencies
Problem
You are using Gradle to build your Android Studio project and you have linked Maven SNAPSHOT modules.
When you build your project, Gradle/Android Studio does not grab the latest version of the SNAPSHOT module but instead uses a cached version.
Solution
Add the following to your build.gradle:
configurations.all {
resolutionStrategy {
cacheChangingModulesFor 0, 'seconds'
}
}
References
Gradle DSL Documentation - Resolution Strategy