Gradle无法在命令行中构建Android Project,aapt失败

时间:2016-01-17 02:29:08

标签: java android gradle

我在this guide.

之后创建了一个基本的Android项目

现在,当我在命令行中运行gradle(版本2.10)时,出现以下错误:

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':processDebugResources'.
> com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command '/opt/android-sdk/build-tools/23.0.2/aapt'' finished with non-zero exit value 1

这是我的build.gradle文件:

buildscript {
    repositories {
        jcenter()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:1.5.0'

    }
}

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"
}

这是我的AndroidManifest.xml文件:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="org.hello"
    android:versionCode="1"
    android:versionName="1.0.0" >

    <application android:label="@string/app_name" >
        <activity
            android:name=".HelloActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

有趣的是,当我启动Android Studio(1.5)并在那里构建测试应用程序时,它工作正常,但在命令行中执行它会失败。我试过从AS复制gradle文件,但没有用。我检查了安装路径,aapt应该是它的位置。

我很失落,因为几个月前我使用了同样的指南。今天我更新了我的Android SDK安装(编辑:我确保安装了正确的版本),但我无法正常构建任何内容。

如果您需要更多信息,请告诉我,我被困住了。

1 个答案:

答案 0 :(得分:0)

我自己想通了。重新安装Gradle之后,我终于得到了一条新的错误消息,用简单的英语告诉我出了什么问题(这是我的资源问题)。

这真的很奇怪,因为我之前使用Archlinux和所有其他Gradle更新工作正常。

非常感谢任何人给出了一些想法:)