Error “Program type already present: android.support.design.widget.CoordinatorLayout$Behavior” when adding new libraries
Clash Royale CLAN TAG #URR8PPP Error “Program type already present: android.support.design.widget.CoordinatorLayout$Behavior” when adding new libraries I am getting this error when I am trying to add new libraries to my project and then run my app: Program type already present: android.support.design.widget.CoordinatorLayout$Behavior Following are the libraries I am trying to add implementation 'com.theartofdev.edmodo:android-image-cropper:2.7.0' implementation 'com.github.yalantis:ucrop:2.2.2' Here is my app level gradle file apply plugin: 'com.android.application' android { compileSdkVersion 26 defaultConfig { applicationId "com.techxee.adarsh.chatbeta" minSdkVersion 15 targetSdkVersion 26 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false ...