/Applications/eclipse_4.4.2/android-sdk-macosx/build-tools/23.0.1/aapt''以非零退出值1结束

时间:2016-01-08 07:03:42

标签: android

enter image description here

我解决了这个问题很长一段时间。谁遇到过这个问题。谢谢!

2 个答案:

答案 0 :(得分:0)

检查compileSdkVersion文件中已有的build.gradle版本。如果你有另一个,请转到23

还可以File -> Invalidate Caches/Restart以及Build -> CleanBuild -> Rebuild project来解决双重依赖关系。

希望有所帮助

答案 1 :(得分:0)

这是我的build.gradle

apply plugin: 'com.android.application'
buildscript {
    repositories {`enter code here`
        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
    }
}
dependencies {
    compile fileTree(dir: 'libs', include: '*.jar')
    compile 'com.android.support:appcompat-v7:+'
}

android {
    compileSdkVersion 23
    buildToolsVersion '23.0.1'

    sourceSets {
        main {
            manifest.srcFile 'AndroidManifest.xml'
            java.srcDirs = ['src']
            resources.srcDirs = ['src']
            aidl.srcDirs = ['src']
            renderscript.srcDirs = ['src']
            res.srcDirs = ['res']
            assets.srcDirs = ['assets']
        }

        // Move the tests to tests/java, tests/res, etc...
        instrumentTest.setRoot('tests')

        // Move the build types to build-types/<type>
        // For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
        // This moves them out of them default location under src/<type>/... which would
        // conflict with src/ being used by the main source set.
        // Adding new build types or product flavors should be accompanied
        // by a similar customization.
        debug.setRoot('build-types/debug')
        release.setRoot('build-types/release')
    }
}