Today I am faced with a massive error that doesn\'t let me run a sample project on my phone.
When Android Studio is building the project, it first shows the followin
It seems your libs folder & library project xyzSDK contains same library, which is causing issues while converting to dex
You can try to identify such library and remove it from one place. Or excluding it like this
compile project(':xyzSDK'){
exclude module: 'support-v4'
}
I have taken example of support-v4, as i have faced similar issues due to this one previously.