作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试按照 react-native“入门”here 创建一个 react-native android 应用程序但是当我尝试通过 CLI 和 Android Studio 运行它时,它给了我这个错误:
A failure occurred while executing com.android.build.gradle.internal.tasks.Workers$ActionFacade
> Android resource compilation failed
AAPT: C:\Windows\System32\AwsomeProject\android\app\build\intermediates\res\merged\debug: error: directory does not exist.
我尝试删除构建文件夹、清理项目并重新运行它,但它不起作用。
我该如何解决这个问题?
最佳答案
如果我理解你的情况是对的:
Java
和 XML
绝对没有问题。除上述之外,您还应该删除 .gradle
目录。
不幸的是,某些 react-native
模块在 node_modules/
目录中有自己的构建目录,因此您可能没有为它们清除构建缓存.
当然,每次进入每个模块并手动删除构建缓存真的很难,但幸运的是,您可以通过向 build.gradle
文件添加如下内容来更改此行为:
allprojects {
// ...
buildDir = "${rootProject.rootDir}/.build/${project.name}"
}
Note: This tells gradle to use the same build directory for all projects.
I prefer "
.build
" as build directory but you may want to change that to "build
" in above.
关于android - 运行 React-native 的 AwsomeProject 时调试目录不存在错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58409962/
我正在尝试按照 react-native“入门”here 创建一个 react-native android 应用程序但是当我尝试通过 CLI 和 Android Studio 运行它时,它给了我这个
我是一名优秀的程序员,十分优秀!