flutter icon indicating copy to clipboard operation
flutter copied to clipboard

Provide a helpful error message for gradle duplicate class errors

Open gmackall opened this issue 2 years ago • 5 comments

The error that Gradle throws when it detects that two modules have duplicate classes is not very helpful to a typical flutter developer (see error at the end).

Pieces of information that would be helpful to include:

  1. examples of how to exclude one of the two modules (this is sometimes the solution), e.g. Add the following to the android{} section of your android/app/build.gradle:
configurations {
        implementation.exclude module:'example_module_name'
}
  1. Instructions on how to run ./gradlew app:dependencies to identify which top level modules these dependencies are coming from.

  2. A grep that would do the above and highlight the particular problematic modules, e.g. this one from @reidbaker

./gradlew dependencies | { grep --color -E 'module_A' -q; grep --color -E 'module_B' -q } && echo "module_A and module_B are known to confict. Run \`gradlew dependencies | grep --color -E 'module_A|module_B|$'\` and find which dependencies conflict to either remove or suppress conflicting classes. See EXAMPLE_ISSUE for more details" || echo 'Unfortunately we were not able to detect a known issue.'

Example output from such a failure.

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':app:checkDebugDuplicateClasses'.
> A failure occurred while executing com.android.build.gradle.internal.tasks.CheckDuplicatesRunnable
   > Duplicate class com.google.protobuf.AbstractMessageLite found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.AbstractMessageLite$Builder found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.AbstractMessageLite$Builder$LimitedInputStream found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.AbstractParser found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.AbstractProtobufList found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.BooleanArrayList found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.ByteBufferWriter found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.ByteOutput found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.ByteString found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.ByteString$1 found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.ByteString$ArraysByteArrayCopier found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.ByteString$BoundedByteString found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.ByteString$ByteArrayCopier found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.ByteString$ByteIterator found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.ByteString$CodedBuilder found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.ByteString$LeafByteString found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.ByteString$LiteralByteString found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.ByteString$Output found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.ByteString$SystemByteArrayCopier found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.CodedInputStream found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.CodedOutputStream found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.CodedOutputStream$1 found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.CodedOutputStream$AbstractBufferedEncoder found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.CodedOutputStream$ArrayEncoder found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.CodedOutputStream$ByteOutputEncoder found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.CodedOutputStream$OutOfSpaceException found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.CodedOutputStream$OutputStreamEncoder found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.DoubleArrayList found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.ExperimentalApi found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.ExtensionLite found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.ExtensionRegistryFactory found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.ExtensionRegistryLite found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.ExtensionRegistryLite$ObjectIntPair found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.FieldSet found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.FieldSet$1 found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.FieldSet$FieldDescriptorLite found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.FloatArrayList found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.GeneratedMessageLite found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.GeneratedMessageLite$1 found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.GeneratedMessageLite$Builder found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.GeneratedMessageLite$DefaultInstanceBasedParser found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.GeneratedMessageLite$ExtendableBuilder found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.GeneratedMessageLite$ExtendableMessage found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.GeneratedMessageLite$ExtendableMessage$ExtensionWriter found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.GeneratedMessageLite$ExtendableMessageOrBuilder found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.GeneratedMessageLite$ExtensionDescriptor found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.GeneratedMessageLite$GeneratedExtension found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.GeneratedMessageLite$MethodToInvoke found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.GeneratedMessageLite$SerializedForm found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.IntArrayList found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.Internal found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.Internal$BooleanList found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.Internal$DoubleList found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.Internal$EnumLite found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.Internal$EnumLiteMap found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.Internal$FloatList found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.Internal$IntList found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.Internal$ListAdapter found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.Internal$ListAdapter$Converter found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.Internal$LongList found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.Internal$MapAdapter found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.Internal$MapAdapter$1 found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.Internal$MapAdapter$Converter found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.Internal$MapAdapter$EntryAdapter found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.Internal$MapAdapter$IteratorAdapter found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.Internal$MapAdapter$SetAdapter found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.Internal$ProtobufList found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.InvalidProtocolBufferException found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.LazyField found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.LazyField$1 found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.LazyField$LazyEntry found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.LazyField$LazyIterator found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.LazyFieldLite found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.LazyStringArrayList found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.LazyStringArrayList$ByteArrayListView found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.LazyStringArrayList$ByteStringListView found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.LazyStringList found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.LongArrayList found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.MapEntryLite found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.MapEntryLite$1 found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.MapEntryLite$Metadata found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.MapFieldLite found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.MessageLite found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.MessageLite$Builder found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.MessageLiteOrBuilder found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.MessageLiteToString found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.MutabilityOracle found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.MutabilityOracle$1 found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.NioByteString found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.NioByteString$1 found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.Parser found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.ProtobufArrayList found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.ProtocolStringList found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.RopeByteString found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.RopeByteString$1 found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.RopeByteString$Balancer found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.RopeByteString$PieceIterator found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.RopeByteString$RopeInputStream found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.SmallSortedMap found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.SmallSortedMap$1 found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.SmallSortedMap$EmptySet found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.SmallSortedMap$EmptySet$1 found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.SmallSortedMap$EmptySet$2 found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.SmallSortedMap$Entry found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.SmallSortedMap$EntryIterator found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.SmallSortedMap$EntrySet found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.TextFormatEscaper found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.TextFormatEscaper$1 found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.TextFormatEscaper$2 found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.TextFormatEscaper$ByteSequence found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.UninitializedMessageException found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.UnknownFieldSetLite found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.UnmodifiableLazyStringList found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.UnmodifiableLazyStringList$1 found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.UnmodifiableLazyStringList$2 found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.UnsafeByteOperations found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.UnsafeUtil found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.UnsafeUtil$1 found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.Utf8 found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.Utf8$Processor found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.Utf8$SafeProcessor found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.Utf8$UnpairedSurrogateException found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.Utf8$UnsafeProcessor found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.WireFormat found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.WireFormat$1 found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.WireFormat$FieldType found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.WireFormat$FieldType$1 found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.WireFormat$FieldType$2 found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.WireFormat$FieldType$3 found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.WireFormat$FieldType$4 found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.WireFormat$JavaType found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.WireFormat$Utf8Validation found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.WireFormat$Utf8Validation$1 found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.WireFormat$Utf8Validation$2 found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)
     Duplicate class com.google.protobuf.WireFormat$Utf8Validation$3 found in modules jetified-protobuf-javalite-3.21.7 (com.google.protobuf:protobuf-javalite:3.21.7) and jetified-protobuf-lite-3.0.1 (com.google.protobuf:protobuf-lite:3.0.1)

     Go to the documentation to learn how to <a href="d.android.com/r/tools/classpath-sync-errors">Fix dependency resolution errors</a>.

* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.

* Get more help at https://help.gradle.org

BUILD FAILED in 1s
Running Gradle task 'assembleDebug'...                           2,536ms
Exception: Gradle task assembleDebug failed with exit code 1

gmackall avatar Jul 14 '23 00:07 gmackall

An example issue where a user ran into this issue when trying to use firebase and espresso plugins together: https://github.com/flutter/flutter/issues/119252

gmackall avatar Jul 14 '23 00:07 gmackall

Also cc @reidbaker , I no longer believe this is possible in flutter analyze --suggestions, because it doesn't have access to the error message.

Unless we tried to invoke the gradle task, and then caught the error from there, but then we would require that flutter analyze --suggestions attempts an android build which seems like a big change. Do you have any thoughts?

gmackall avatar Jul 14 '23 00:07 gmackall

@christopherfujino what do you think about having analyze build the android project?

reidbaker avatar Jul 14 '23 15:07 reidbaker

@christopherfujino what do you think about having analyze build the android project?

I agree this seems like a big change. Also, what would the implementation look like? Would we just try to build each native platform, and report failures?

Alternatively, would it be feasible to run some kind of gradle linter? This is the first I found from a google search: https://github.com/nebula-plugins/gradle-lint-plugin/wiki. Looks like to use this plugin, it would need to be added to the project's build.gradle.

christopherfujino avatar Jul 14 '23 16:07 christopherfujino

Another option would be to use this package https://github.com/tehlers/gradle-duplicate-classes-check

reidbaker avatar Jul 14 '23 17:07 reidbaker

This issue is missing a priority label. Please set a priority label when adding the triaged-tool label.

flutter-triage-bot[bot] avatar Jul 14 '23 23:07 flutter-triage-bot[bot]