在 Android Studio 项目中找不到参数的方法 android() [英] Could not find method android() for arguments in Android Studio project

查看:71
本文介绍了在 Android Studio 项目中找不到参数的方法 android()的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试对我的 android studio 项目进行成绩同步,但标题中不断出现此错误.我的 build.gradle 文件是

I am trying to do a grade sync on my android studio project and I keep getting this error in the title. My build.gradle file is

// 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.2.1'

    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}
}
allprojects {
repositories {
    jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}

android {
compileSdkVersion 24
buildToolsVersion '24.0.0'
}
dependencies {

}

我的错误信息是

Gradle sync failed: Could not find method android() for arguments [build_aiwlctiq29euo9devcma4v4r7$_run_closure3@22efc0bc] on root project 'MyRadio

我在网上查看并尝试了多种解决方案,但似乎没有任何效果.这到底是什么意思?任何帮助将不胜感激.

I have looked online and tried multiple solutions but nothing seems to work. What does this even mean? Any help would be appreciated.

推荐答案

您使用了错误的 build.gradle 文件.

You are using the wrong build.gradle file.

在您的顶级文件中,您不能定义 android 块.

In your top-level file, you can't define an android block.

只需将这部分移动到 module/build.Gradle 文件中即可.

Just move this part inside the module/build.Gradle file.

android {
compileSdkVersion 17
buildToolsVersion '23.0.0'
}
dependencies {
compile files('app/libs/junit-4.12-JavaDoc.jar')
}
apply plugin: 'maven'

这篇关于在 Android Studio 项目中找不到参数的方法 android()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆