I am getting the following error while building the project. haven't used CoordinatorLayout in this project. just added it as a dependency in build.gradle :
I am using Android Studio 3.2 Canary 4.
Log
AGPBI: {"kind":"error","text":"Program type already present: android.support.design.widget.CoordinatorLayout$Behavior","sources":[{}],"tool":"D8"} :app:transformDexArchiveWithExternalLibsDexMergerForDebug FAILED FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':app:transformDexArchiveWithExternalLibsDexMergerForDebug'.
com.android.builder.dexing.DexArchiveMergerException: Error while merging dex archives: /windows/Other/app/build/intermediates/transforms/dexBuilder/debug/0.jar, /windows/Other/app/build/intermediates/transforms/dexBuilder/debug/1.jar, /windows/Other/app/build/intermediates/transforms/dexBuilder/debug/4.jar, . . ...................
/windows/Other/app/build/intermediates/transforms/dexBuilder/debug/294.jar
Program type already present: android.support.design.widget.CoordinatorLayout$Behavior
It worked when I dropped the appcompatgradle support dependency, like this:
implementation 'com.android.support:appcompat-v7:27.0.2'
previously:
implementation 'com.android.support:appcompat-v7:27.1.0'
Alternatively, this can also be fixed by simply adding the 27.1.0 or higher support design dependency to your app level build.gradle as follows:
implementation 'com.android.support:design:27.1.0'