build gradle导致应用程序生成错误

时间:2016-08-15 10:23:10

标签: android android-studio gradle android-gradle

我正在使用Android Studio 1.4.1。任何项目,当我在Android Studio中打开它时,项目的所有类都正确加载,项目工作正常。 问题是,当我尝试opn一个名为" EcoAssistant_03"的特定项目时,我收到以下消息:

Error:(22, 0) Gradle DSL method not found: 'android()'
Possible causes:<ul><li>The project 'EcoAssistant_03' may be using a version of Gradle that does not contain the method.
<a href="openGradleSettings">Gradle settings</a></li><li>The build file may be missing a Gradle plugin.
<a href="apply.gradle.plugin">Apply Gradle plugin</a></li>

我不知道项目有什么问题,我不知道如何让它正常运行。

请查看下面发布的build.gradle文件,让我知道如何让它运行

的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:1.3.0'

    // 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.1'
}
dependencies {
}

的build.gradle

apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.2"

defaultConfig {
    applicationId "com.example.com.ecoassistant_03"
    minSdkVersion 21
    targetSdkVersion 22
    versionCode 1
    versionName "1.0"
}
buildTypes {
    debug {
        debuggable true
    }
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:design:23.1.1'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:support-v4:23.1.1'
compile files('libs/Jama-1.0.3.jar')
compile files('libs/drivingEfficiencyModuleRunnable_00_out.jar')
}

更新

enter image description here

1 个答案:

答案 0 :(得分:0)

您的错误会告诉您确切的问题。

  

未找到Gradle DSL方法:&#39; android()&#39;

从顶级build.gradle中删除此android部分。 Android插件尚未应用于该文件。

android {
    compileSdkVersion 23
    buildToolsVersion '23.0.1'
}
dependencies {
}

这样可以解决问题,但这里有一些注释

这些行是不必要的。您已经使用依赖项部分的第一行编译它们

compile files('libs/Jama-1.0.3.jar')
compile files('libs/drivingEfficiencyModuleRunnable_00_out.jar')

这一行编译了跟随它的两个,所以这些都不是必需的

compile 'com.android.support:design:23.1.1'

换句话说,这就是构建应用程序所需的全部内容

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