Browse Source

Disable EqualsHashCode that seems to be causing ErrorProne crashes.

Bug: 36098770
Test: None
Change-Id: Ic7233b46137c397c8b09d2096d7d5667e7d260fb
transition-compose-core
Aurimas Liutikas 7 years ago
parent
commit
459077b04f
  1. 1
      src/main/groovy/android/support/SupportLibraryPlugin.groovy

1
src/main/groovy/android/support/SupportLibraryPlugin.groovy

@ -168,6 +168,7 @@ class SupportLibraryPlugin implements Plugin<Project> {
// TODO(aurimas): remove this once all these warnings are fixed.
libraryVariant.getJavaCompile().options.compilerArgs += [
'-Xep:EqualsHashCode:OFF',
'-Xep:MissingCasesInEnumSwitch:WARN',
'-Xep:TypeParameterUnusedInFormals:WARN',
'-Xep:MissingOverride:WARN',

Loading…
Cancel
Save