Сбой синхронизации Gradle: невозможно найти метод

Я пытаюсь импортировать проект в Android-студии.

При импорте я получил сообщение об ошибке Gradle:

Сбой синхронизации Gradle: невозможно найти метод 'org.gradle.api.artifacts.Configuration.setExtendsFrom (Ljava / lang / Iterable;) Lorg / gradle / api / artifacts / Configuration;'.

Я попытался: - Повторно загрузить зависимости и синхронизировать проект: Ошибка (та же ошибка).

Остановить процесс сборки Gradle: ошибка (та же ошибка).

Удалить .graddle в домашнем каталоге: Ошибка (та же ошибка).

Неправильный кэш и перезапуск: ошибка (та же ошибка).

Удалите и переустановите Android studio и SDK: ошибка (та же ошибка).

У меня пока нет идей

/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.+'
}

заранее спасибо