Error de sincronización de Gradle: no se puede encontrar el método

Intento importar un proyecto en el estudio de Android.

Al importarlo, tengo un error con Gradle:

Error de sincronización de Gradle: no se puede encontrar el método 'org.gradle.api.artifacts.Configuration.setExtendsFrom (Ljava / lang / Iterable;) Lorg / gradle / api / artifacts / Configuration;'.

Intenté: - Volver a descargar las dependencias y sincronizar el proyecto: Error (mismo error).

Detener procesos de compilación de Gradle: error (mismo error).

Elimine el .graddle en el directorio de inicio: Error (mismo error).

Invalidar caché y reiniciar: Error (mismo error).

Desinstale y vuelva a instalar Android Studio y SDK: Fail (mismo error).

Todavía no tengo ideas

/build.gradle:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.1.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

/app/build.gradle

apply plugin: 'com.android.application'
//apply plugin: 'android'

android {
    compileSdkVersion 17
    buildToolsVersion '20.0.0'
    defaultConfig {
        applicationId 'xxx.xxx.xxx'
        minSdkVersion 17
        targetSdkVersion 17
        versionCode 1
        versionName '1.0'
    }
    buildTypes {
        release {
            minifyEnabled true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
        buildPB {
            debuggable false
            jniDebuggable false
            renderscriptDebuggable false

            zipAlignEnabled true
        }
    }
    productFlavors {
    }
//    lintOptions {
//        abortOnError false
//    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    // You must install or update the Support Repository through the SDK manager to use this dependency.
    compile ('org.simpleframework:simple-xml:2.7.1') {
        exclude module: 'stax'
        exclude module: 'stax-api'
        exclude module: 'xpp3'
    }
    compile 'net.sf.opencsv:opencsv:2.3'
    compile 'de.greenrobot:greendao:1.3.7'
    // You must install or update the Support Repository through the SDK manager to use this dependency.
//    compile 'com.android.support:support-v4:19.+'
}

Gracias por adelantado