解决Could not find method android() for arguments问题

来源:互联网 发布:淘宝旅行机票网 编辑:程序博客网 时间:2024/05/01 22:33

从安卓巴士下载了一个app源码,导入Android studio后一直有bug存在,编译出现如下错误:

Error:(23, 0) Could not find method android() for arguments [****] on root project '****' of type org.gradle.api.Project.

最终解决方法是,打开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.2'        classpath 'com.novoda:bintray-release:0.3.4'        // 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 23    buildToolsVersion '23.0.3'}dependencies {}

将其中的

android {    compileSdkVersion 23    buildToolsVersion '23.0.3'}

删除或注释掉后重新编译通过。
参考文章

0 0
原创粉丝点击