我在Android Studio 3.0.1上使用SNAPSHOT依赖项时遇到了一些麻烦。我也尝试过Android Studio 3.1,同样的问题依然存在。
我通过以下方式包含依赖关系:
dependencies {
configurations.all {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
resolutionStrategy.cacheDynamicVersionsFor 0, 'seconds'
}
implementation('com.example:lib:0.0.1-SNAPSHOT') { changing = true }
}
当发布新版本的库时,如果我单击"刷新所有Gradle项目"图标,应用程序构建正常。但是,Android Studio没有看到快照中的任何更改。
我已经尝试重新启动Android Studio并使其缓存无效,没有任何区别。
如何让Android Studio了解这些变化?
答案 0 :(得分:3)
我有同样的问题。到目前为止,对我有用的是通过命令行刷新依赖项:
./gradlew clean --refresh-dependencies
之后,完全退出AS并再次打开它。如果我找到别的东西,我会更新我的答案。
答案 1 :(得分:2)
这是工作室3.1中的一个错误 - > https://issuetracker.google.com/issues/72614343
修正了最新的Canary版本(3.2)