从android studio生成签名的apk时遇到了这个错误。
Could not list contents of '../node_modules/react-native/scripts/third-party/glog-0.3.5/test-driver'. Couldn't follow symbolic link.
我尝试过:
- 取消测试驱动程序的链接->找不到此类文件
- 删除glog-0.3.5文件夹
- 删除node_modules中的.bin文件夹
但由于上述错误,我仍然无法生成APK。
答案 0 :(得分:0)
运行'rm -rf node_modules / react-native / scripts / third-party / glog-0.3.5 /',问题已解决
答案 1 :(得分:0)
我相信此页面有解决方案。
https://github.com/facebook/react-native/issues/14464
感谢@itinance和@tapz提供解决方案。
为了您的方便,这就是我所做的。
步骤1)
unlink node_modules/react-native/third-party/glog-0.3.4/test-driver
步骤2) 在项目根文件夹中手动找到第三方/glog-0.3.4,删除了“ blog-0.3.4”文件夹。
步骤3) cd返回android文件夹和
./gradlew assembleRelease
这次,发行版本已成功编译。