直到昨天一切正常。
我之间没有更新任何内容。
但突然之间,我不断收到此错误“错误:任务执行失败”:app:processDebugResources'。
com.android.ide.common.process.ProcessException:无法执行aapt“
我尝试将sdk更新为27.0.0,但仍然收到相同的错误消息。
尝试删除.gradle文件夹并多次构建文件夹和清理项目。但没有帮助。
这里出了什么问题?
这是我的build.gradle(app)
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion "26.0.1"
defaultConfig {
applicationId "com.udayrepo.doctortracker"
minSdkVersion 17
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:26.0.1'
compile 'com.android.support:recyclerview-v7:+'
compile 'com.android.support:design:26.0.1'
testCompile 'junit:junit:4.12'
}
答案 0 :(得分:0)
上述错误真的很烦人,没有任何问题的线索。
正如许多其他人所说,我尝试在我的app.gradle文件中探索替换每个库。
我搜索了Android SDK Plackage中的每个最新软件包,并使用下面的gradle文件更新了每个软件包
compile 'com.android.support:appcompat-v7:27.1.1'
compile 'com.android.support:recyclerview-v7:27.1.1'
compile 'com.android.support:design:27.1.1'
testCompile 'junit:junit:4.12'
然后它开始工作了。
我只是分享解决方案,因为它可能会帮助其他人。只需查看最新的和更新安装所需的软件包。