反应原生错误,任务执行失败':app:processDebugResources'

时间:2017-07-31 12:47:48

标签: react-native

这个错误意味着什么?

当我尝试并运行npm run playground-android时,我收到错误。

FAILURE:构建因异常而失败。 什么地方出了错: 任务':app:processDebugResources'执行失败。 java.io.IOException:无法删除路径' C:\ sites \ ReactMatt \ lower-your-drinking \ android \ app \ build \ generated \ source \ r \\ test \ org \ webkit'。

有什么想法吗?

5 个答案:

答案 0 :(得分:3)

我有一个类似的问题。以下是我修复它的方法。

cd android //Navigate into the android folder from the root directory
gradlew clean // Run this

我希望它有所帮助

答案 1 :(得分:1)

在Windows上      我通过

解决
1. cd android
2. ./gradlew clean

答案 2 :(得分:0)

尝试通过CLI构建时关闭Android Studio

答案 3 :(得分:0)

我遇到了同样的问题,但是gradlew clean无法解决问题,直到我从项目中删除了android和ios文件夹,然后使用了这些命令;

  • 本机弹出
  • 本机链接
  • react-native run-android

祝你好运。

答案 4 :(得分:-1)

在您的项目中,

  1. 导航到 android => cd android
  2. 然后,运行此命令 => ./gradlew clean
  3. 然后,从 Android Studio 打开您项目的 Android kloser 并构建 Gradle enter image description here

enter image description here