Could not find method android() for arguments(找不到参数的方法 android())
问题描述
我一直在尝试将项目导入 Android Studio,这就是我卡住的地方,Stack Overflow 但它没有为我的特定错误提供解决方案.
I've been trying to import a project to Android Studio and this is where I am stuck, there is a similar question on Stack Overflow but it did not provide a solution to my particular error.
这是我的错误日志:
C:<some location>uild.gradle
Error:(24, 1) A problem occurred evaluating root project '<project name>'.
> Could not find method android() for arguments [build_4fli1jm76ubcnxesnhqnhie47$_run_closure3@6e71db85] on root project '<project name>'.
Information:BUILD FAILED
Gradle 同步消息是:
The Gradle sync messages are:
错误:(24, 0) Gradle DSL 方法未找到: 'android()' 可能原因:
Error:(24, 0) Gradle DSL method not found: 'android()' Possible causes:
The project 'PoojaPeople' may be using a version of Gradle that does not contain the method. Gradle settings The build file may be missing a Gradle plugin. Apply Gradle plugin
我不太确定这个方法 android()
的确切位置.如果它是位于 Application 的 build.gradle
文件中的那个,我仍然不知道从这里去哪里.任何帮助表示赞赏.
I'm not too sure where exactly this method android()
is located. If it is the one located in Application's build.gradle
file, I still don't exactly know where to go from here. Any help is appreciated.
我的 build.gradle
是
buildscript {
repositories {
maven { url "http://dl.bintray.com/populov/maven" }
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
maven { url "http://dl.bintray.com/populov/maven" }
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
android {
compileSdkVersion 17
buildToolsVersion '23.0.0'
}
dependencies {
compile files('app/libs/junit-4.12-JavaDoc.jar')
}
apply plugin: 'maven'
推荐答案
你使用了错误的 build.gradle
文件.
在您的顶级文件中,您无法定义 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()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:找不到参数的方法 android()


基础教程推荐
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01