Auto-update dependencies. - #2825
Conversation
Wiz Scan Summary
To detect these findings earlier in the dev lifecycle, try the Wiz Code extension for VS Code, JetBrains, or Visual Studio. |
There was a problem hiding this comment.
Code Review
This pull request updates the Android Gradle Plugin (AGP) version to 9.3.1 and attempts to upgrade ktlint to version 0.50.0. However, the ktlint upgrade uses outdated coordinates which will cause a dependency resolution failure; it should be updated to use the new 'com.pinterest.ktlint:ktlint-cli' coordinates instead.
|
|
||
| dependencies { | ||
| ktlint("com.pinterest:ktlint:0.49.1") { | ||
| ktlint("com.pinterest:ktlint:0.50.0") { |
There was a problem hiding this comment.
Starting with version 0.49.0, the ktlint artifact has been renamed and moved to new coordinates. Using com.pinterest:ktlint:0.50.0 will cause a dependency resolution failure because this artifact is no longer published under the old coordinates. Please use com.pinterest.ktlint:ktlint-cli:0.50.0 instead.
ktlint("com.pinterest.ktlint:ktlint-cli:0.50.0") {
Brought to you by your friendly Repository Gardener.