无法为参数找到方法android()

时间:2017-05-27 19:58:10

标签: android gradle

我使用android studio 2.3.2,这是我的gradle文件

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
    repositories {
        jcenter()
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.3.1'
        classpath 'com.google.gms:google-services:2.1.0'
    }
}
android {
    compileSdkVersion 25
    buildToolsVersion '25.0.3'
}
dependencies {
}

我也更新了gradle,但是我仍然有运行该项目的问题!

1 个答案:

答案 0 :(得分:0)

卸下:

android {
    compileSdkVersion 25
    buildToolsVersion '25.0.3'
}
dependencies {
}

这些属于模块级build.gradle文件(例如app/build.gradle),而不属于顶级build.gradle文件。

您可能希望在Android Studio中创建一个新的空项目,并在继续之前查看它放入build.gradleapp/build.gradle的内容。