错误:执行失败的任务’:app:processDebugResources’. > java.io.IOException:无法在android studio中删除文件夹“”

前端之家收集整理的这篇文章主要介绍了错误:执行失败的任务’:app:processDebugResources’. > java.io.IOException:无法在android studio中删除文件夹“”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试使用 android studio开发一个android应用程序,所以我创建一个 Android应用程序,我想发布它,当我点击构建项目,我得到这个错误:(我需要的apk文件)
Error:Execution Failed for task ':app:processDebugResources'.
> java.io.IOException: Could not delete folder C:\Users\ehsan\AndroidStudioProjects\MyApplication3\app\build\generated\source\r\debug\com\example\ehsan

我在android工作室很新

Build.gradle:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"

    defaultConfig {
        applicationId "com.example.ehsan.myapplication"
        minSdkVersion 15
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'),'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs',include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.2.0'
}

解决方法

我想,目标构建目录中的一些文件在您使用的另一个工具中打开.只需在文件夹中打开一个文件柄即可清除.构建任务’clean’想要删除构建目录中的所有文件(通常是“目标”),当它失败时,构建失败.
原文链接:https://www.f2er.com/android/124834.html

猜你在找的Android相关文章