'/media/disk/sdk/build-tools/19.1.0/aapt''以非零退出值1

时间:2018-05-07 09:01:28

标签: java android eclipse android-studio gradle

我已将项目从Eclipse导入Android Studio,但由于上述错误,gradle构建始终失败。我不明白错误是什么。

这是我的gradle

apply plugin: 'com.android.library'

android {
compileSdkVersion 19
buildToolsVersion '19.1.0'

defaultConfig {
    minSdkVersion 7
    targetSdkVersion 19
}

buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
     }
   }
 }

    dependencies {

compile project(':signaturePad')
compile 'com.google.android.gms:play-services:+'
compile 'com.android.support:appcompat-v7:23.4.0'
compile files('libs/NineOldAndroid-2.4.0.jar')
compile files('libs/picasso-2.3.3.jar')
}

我尝试过更改buildtoolsversion,但它无效。 对于每个构建工具版本,它都会产生相同的错误。 我也试过了Invalidate Chace and Restart,但仍然没有结果。 我还尝试卸载buildtools并重新安装它,但仍然没有结果。

这是始终发生的错误 enter image description here

1 个答案:

答案 0 :(得分:0)

将以下行添加到gradle.properties

android.enableAapt2=false