今天我更新了我的
Android Studio到2.0,当我运行我的项目是给我这个错误
Error:Execution Failed for task ':app:clean'. > Unable to delete directory: /media/dev1/08782A6D782A5A281/workspace/gengold/GenGold/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/21.0.3/jars
这是我的build.gradle
apply plugin: 'com.android.application' android { compileSdkVersion 21 buildToolsVersion "21.1.2" defaultConfig { applicationId "com.mobile.gengold" minSdkVersion 15 targetSdkVersion 21 } buildTypes { release { minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android.txt'),'proguard-rules.pro' } } productFlavors { } } dependencies { compile 'com.android.support:support-v4:21.0.2' compile 'com.android.support:appcompat-v7:21.0.3' /*compile 'com.google.android.gms:play-services-maps:6.5.+'*/ compile 'com.google.android.gms:play-services:6.5.87' compile files('libs/jncryptor-1.2.0.jar') }
@R_502_323@
我也有完全一样的问题.我找到的唯一临时解决方案是退出Android Studio,删除整个“build”文件夹(不仅是jar),然后重新回到Android Studio来构建它.
第一个构建没有错误或任何警告,但是要重建,您需要遵循与之前相同的步骤:(
这显然不是一个解决方案,但是似乎问题出现在重建过程的“清洁”部分中的任何服务中,都将占用要删除的文件.
编辑:
看起来在Android 2.0中的NTFS文件系统有问题
在https://code.google.com/p/android/issues/detail?can=2&start=0&num=100&q=&colspec=ID%20Status%20Priority%20Owner%20Summary%20Stars%20Reporter%20Opened&groupby=&sort=&id=206219退房