This is my build.gradle
apply plugin: \'com.android.application\'
android {
compileSdkVersion 25
buildToolsVersion \"26.0.2\"
android {
I solved this problem by add this code in build.gradle
configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
def requested = details.requested
if (requested.group == 'com.android.support') {
if (!requested.name.startsWith("multidex")) {
details.useVersion '25.3.0'
}
}
}
}