切换appcompat& buildtools到v21,aapt.exe已停止工作

时间:2014-10-17 20:05:07

标签: android android-studio

我试图将我的项目从API20切换到API21。

更改gradle文件以使用AppCompat-v7 com.android.support:appcompat-v7:21.0.0buildToolsVersion "21.0.0"时会弹出一个Windows错误对话框,显示aapt.exe has stopped working

2 个答案:

答案 0 :(得分:3)

下载最新的构建工具21.1.1,它将起作用

答案 1 :(得分:0)

更改构建工具21.1.1解决了问题,这里是更改的地方--gradle.build文件:

android {
    compileSdkVersion 21
    buildToolsVersion "21.1.1"//<--------------------!!!

    defaultConfig {
        applicationId "com.stackoverflow"
        minSdkVersion 14
        targetSdkVersion 21
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            runProguard false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'org.jsoup:jsoup:1.7.2'
    compile 'com.android.support:appcompat-v7:21.+'
}