项目在编译时,Gradle出现了一些错误,没有遇到类似的问题

时间:2016-06-12 05:46:11

标签: android gradle android-gradle

我的项目在运行时,出现了一个gradle版本的错误,我尝试了很多方法都没有解决,我们没有遇到过类似的错误,以下是错误日志。

  

错误:(1,0)未找到Gradle DSL方法:'apply()'可能   原因:项目'xindatx1.6.0'可能正在使用的版本   不包含该方法的Android Gradle插件(例如   'testCompile'在1.1.0中添加)。修复插件版本和同步   project项目'xindatx1.6.0'可能正在使用Gradle版本   不包含该方法。打开Gradle包装器文件构建   文件可能缺少Gradle插件。申请Gradle插件

1 个答案:

答案 0 :(得分:0)

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

buildscript {

    repositories {
        google()
        maven {
            url "https://maven.google.com"
        }
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.1'
        classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
       classpath 'com.novoda:bintray-release:0.8.1'
        classpath 'org.greenrobot:greendao-gradle-plugin:3.2.2' // add plugin
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }

}

allprojects {
    repositories {
        google()
        maven { url "https://jitpack.io" }
        jcenter()
        mavenCentral()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}