-
Notifications
You must be signed in to change notification settings - Fork 260
New issue
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
Duplicate classes in Truth 0.41 #467
Comments
Alternative workaround is to exclude androidTestImplementation('com.google.truth:truth:0.41') {
exclude group: 'org.checkerframework', module: 'checker-qual'
} |
Thanks for the report. It looks like upgrading to |
Fixes #467 for Truth and perhaps similar problems for other projects that use Guava. RELNOTES: Updated to versions of the Checker Framework annotations packages that don't contain conflicting classes. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=201097814
Fixes google/truth#467 for Truth and perhaps similar problems for other projects that use Guava. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=201097814
Fixes google/truth#467 for Truth and perhaps similar problems for other projects that use Guava. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=201097814
Truth fix released in Truth 0.42... but we may need a Guava release (possibly coming on Wednesday?) and then an update for Truth to use that for the problem to fully go away. |
Truth pulls in both
org.checkerframework:checker-compat-qual
andorg.checkerframework:checker-qual
.Both artifacts contain some classes, like
org.checkerframework.checker.formatter.FormatUtil
- typetools/checker-framework#712This breaks Android builds :/ Workaround is to go back to 0.40
The text was updated successfully, but these errors were encountered: