我使用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,但是我仍然有运行该项目的问题!
答案 0 :(得分:0)
卸下:
android {
compileSdkVersion 25
buildToolsVersion '25.0.3'
}
dependencies {
}
这些属于模块级build.gradle
文件(例如app/build.gradle
),而不属于顶级build.gradle
文件。
您可能希望在Android Studio中创建一个新的空项目,并在继续之前查看它放入build.gradle
和app/build.gradle
的内容。