刚刚生成了一个新的Android项目并开始构建布局。
这个错误从一开始就一直困扰着我:
Error:java.io.FileNotFoundException: E:\Restoration\Workshop\App\Test\app\build\intermediates\res\merged\debug\drawable-ldrtl-xxhdpi-v17\abc_ic_menu_copy_mtrl_am_alpha.png (The requested operation cannot be performed on a file with a user-mapped section open)
我对此一无所知。当我执行Rebuild和Clean的不同组合时,它有时会自行解析,但下次弹出时它表示它无法在同一目录中找到完全不同的资源:
\app\build\intermediates\res\merged\debug\
它声称找不到的所有文件都在那里。
gradle文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "24.0.3"
defaultConfig {
applicationId "com.xx.xxx.android"
minSdkVersion 16
targetSdkVersion 24
versionCode 1
versionName "1.0"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:24.2.1'
compile 'com.google.firebase:firebase-auth:10.0.0'
compile "com.android.support:support-core-utils:24.0.1"
compile 'com.mikhaellopez:circularimageview:3.0.2'
}
apply plugin: 'com.google.gms.google-services'
如果有人得到任何解决这个问题的提示,会非常感激,真的很烦人。 提前谢谢!