We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We recently added a module replacement rule to address an issue with Guava and Listenablefuture caused by the latest stable Android Gradle Plugin 8.3.
Basically we added this to our root build.gradle file:
build.gradle
allprojects { dependencies { modules { module("com.google.guava:listenablefuture") { replacedBy("com.google.guava:guava") } } } }
When we launch license[Variant]Report, the task fails with a StackOverflowError. I'm not sure if this is a bug of this plugin or Gradle.
license[Variant]Report
Here is the stacktrace
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We recently added a module replacement rule to address an issue with Guava and Listenablefuture caused by the latest stable Android Gradle Plugin 8.3.
Basically we added this to our root
build.gradle
file:When we launch
license[Variant]Report
, the task fails with a StackOverflowError.I'm not sure if this is a bug of this plugin or Gradle.
Here is the stacktrace
The text was updated successfully, but these errors were encountered: