我正在尝试在我的android工作室项目上进行成绩同步,并且我在标题中不断收到此错误.我的build.gradle文件是
// 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 24buildToolsversion '24.0.0'}dependencIEs {}
我的错误信息是
Gradle sync Failed: Could not find method androID() for arguments [build_aiwlctiq29euo9devcma4v4r7$_run_closure3@22efc0bc] on root project 'MyRadio
我已经在线查看并尝试了多种解决方案,但似乎没有任何效果.这甚至意味着什么?任何帮助,将不胜感激.
解决方法:
您使用的是错误的build.gradle文件.
在顶级文件中,您无法定义androID块.
只需将此部分移动到module / build.Gradle文件中即可.
androID {compileSdkVersion 17buildToolsversion '23.0.0'}dependencIEs {compile files('app/libs/junit-4.12-JavaDoc.jar')}apply plugin: 'maven'
总结 以上是内存溢出为你收集整理的无法在Android Studio项目中为参数找到方法android()全部内容,希望文章能够帮你解决无法在Android Studio项目中为参数找到方法android()所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)