Android studio 问题新手求教 网站没有找到原因

Error:(1, 1) A problem occurred evaluating project ':jingu'.

Failed to apply plugin [id 'android']
Gradle version 1.10 is required. Current version is 2.14.1. If using the gradle wrapper, try editing the distributionUrl in E:\androidcopy\JGCOPY\anzhuokaifa\jingu\gradle\wrapper\gradle-wrapper.properties to gradle-1.10-all.zip

找到E:\androidcopy\JGCOPY\anzhuokaifa\jingu\build.gradle 修改成 classpath 'com.android.tools.build:gradle:1.1.0' 如果是1.1.0就不用改了

找到E:\androidcopy\JGCOPY\anzhuokaifa\jingu\gradle\wrapper\gradle-wrapper.properties 修改成distributionUrl=https://services.gradle.org/distributions/gradle-2.14.1-all.zip

apply plugin: 'com.android.application'

dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
compile project(':alipay_lib')
compile project(':slidingmenu_library')
compile project(':slidingmenu_library')
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}

android {
compileSdkVersion 19
buildToolsVersion "25.0.2"

sourceSets {
    main {
        manifest.srcFile 'AndroidManifest.xml'
        java.srcDirs = ['src']
        resources.srcDirs = ['src']
        aidl.srcDirs = ['src']
        renderscript.srcDirs = ['src']
        res.srcDirs = ['res']
        assets.srcDirs = ['assets']
    }

    // Move the tests to tests/java, tests/res, etc...
    instrumentTest.setRoot('tests')

    // Move the build types to build-types/<type>
    // For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
    // This moves them out of them default location under src/<type>/... which would
    // conflict with src/ being used by the main source set.
    // Adding new build types or product flavors should be accompanied
    // by a similar customization.
    debug.setRoot('build-types/debug')
    release.setRoot('build-types/release')
}

}

gradle版本没有配置正确呗,修改
dependencies {
classpath 'com.android.tools.build:gradle:1.10.+'
}
试下

apply plugin: 'com.android.application'

dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
compile project(':alipay_lib')
compile project(':slidingmenu_library')
compile project(':slidingmenu_library')
classpath 'com.android.tools.build:gradle:1.10.+'
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}

android {
compileSdkVersion 19
buildToolsVersion "25.0.2"

sourceSets {
    main {
        manifest.srcFile 'AndroidManifest.xml'
        java.srcDirs = ['src']
        resources.srcDirs = ['src']
        aidl.srcDirs = ['src']
        renderscript.srcDirs = ['src']
        res.srcDirs = ['res']
        assets.srcDirs = ['assets']
    }

    // Move the tests to tests/java, tests/res, etc...
    instrumentTest.setRoot('tests')

    // Move the build types to build-types/<type>
    // For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
    // This moves them out of them default location under src/<type>/... which would
    // conflict with src/ being used by the main source set.
    // Adding new build types or product flavors should be accompanied
    // by a similar customization.
    debug.setRoot('build-types/debug')
    release.setRoot('build-types/release')
}

}

这个工程的Gradle版本是1.1,Gradle version 1.10 is required. 太老了。建议你不如直接重新建一个工程,复制下源码/资源文件。