Gradle SNAPSHOT 版本更新

王修为
2023-12-01

转自:https://www.cnblogs.com/scoftlin/p/9809623.html

在引用Maven 库上的aar 时经常会出现我们更新依赖的库时,Studio 并不能及时将最新的依赖库拉下来。 这个因为gradle为了加快构建的速度,对jar包默认会缓存24小时,缓存之后就不在请求远程仓库了。
所以我们只需要在Gradle 中设置更新策略即可:

configurations.all {
    // check for updates every build
    resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}

如果需要重新下载dependencies 执行 ./gradlew build --refresh-dependencies 即可。

 类似资料: