首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >/Applications/eclipse_4.4.2/android-sdk-macosx/build-tools/23.0.1/aapt'‘已完成,退出值为1

/Applications/eclipse_4.4.2/android-sdk-macosx/build-tools/23.0.1/aapt'‘已完成,退出值为1
EN

Stack Overflow用户
提问于 2016-01-08 15:03:42
回答 2查看 341关注 0票数 0

我已经解决了这个问题很长时间了。谁遇到了这个problem.thanks!

EN

回答 2

Stack Overflow用户

发布于 2016-01-08 15:13:51

检查build.gradle文件中已有的compileSdkVersion版本。挑战23,如果你有其他挑战的话。

也可以尝试使用File -> Invalidate Caches/Restart以及Build -> CleanBuild -> Rebuild project来解决双重依赖问题。

希望它能帮上忙

票数 0
EN

Stack Overflow用户

发布于 2016-01-08 15:36:17

这是我的build.gradle

代码语言:javascript
复制
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')
    }
}
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/34671252

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档