Ying Li
Ying Li
I made PR #77 to fix this please review when you get time
@yuanyang1991 thank you very much for reporting this. it's more like an issue of Login web page instead of Login SDK I will report this to develop team of Login...
hi @daniCsorbaJB I think I fixed/replied all your comments could you please kindly check this PR again? thank you very much
I reproduced this issue with a very simple build script: `build.gradle.kts`: ``` plugins { java } repositories { mavenCentral() maven { setUrl("https://repo.maven.apache.org/maven2") } } dependencies { implementation("com.google.guava:guava:31.1-jre") implementation("com.google.collections:google-collections:1.0") } ```...
oh I found this in your release note: > Reporting dependencies that overlap with Guava > If your dependency graph contains the very old google-collections or the [hacky](https://groups.google.com/g/guava-announce/c/Km82fZG68Sw) listenablefuture, Gradle...
oh~~~ good news this workaround works for our real project: 😅 ``` dependencies { modules { // replace old dependency `google-collections` with `guava` module("com.google.collections:google-collections") { replacedBy("com.google.guava:guava", "google-collections is part of...
hi @IgnatBeresnev thank you very much for approving this PR could you please merge it?