当前位置: 首页 > 知识库问答 >
问题:

错误:(16,0)在org.gradle.api.project类型的根项目'delta-bartalk'上找不到参数的方法android()

杭胜
2023-03-14

我正在尝试查看项目中的布局。布局不显示图像。每次打开项目时,我都会得到一个错误,现在显示的错误是

以下是文件-第一个顶级构建文件名:delta-bartalk

// Top-level build file where you can add configuration options common to all sub-projects/modules.

apply plugin: 'com.android.application' //[change recommended by comment from Eugen Martynov]


buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.2.3'
    }
}
allprojects {
    repositories {
        jcenter()
    }
}

android {
}
dependencies {
}

下一个代码称为bartalk\build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 19
    buildToolsVersion "20.0.0"

    defaultConfig {
        minSdkVersion 17
        targetSdkVersion 19
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    }
}

dependencies {
    compile 'com.android.support:support-v4:19.0.0'
    compile fileTree(dir: 'libs', include: ['*.jar'])
}

共有1个答案

董俊
2023-03-14

在顶层文件中,您必须删除

android { } dependencies { }

apply plugin: 'com.android.application'
 类似资料: