1

我在从 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.

我试过了 :

  1. 取消链接测试驱动程序 - >找不到这样的文件
  2. 删除 glog-0.3.5 文件夹
  3. 删除 node_modules 中的 .bin 文件夹

但由于上述错误,我仍然无法生成 apk。

4

2 回答 2

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

Step 2) 手动定位到项目根文件夹中的thirdparty/glog-0.3.4,删除“blog-0.3.4”文件夹。

步骤 3) cd 回到 android 文件夹和

./gradlew assembleRelease

这一次,release build 编译成功。

于 2019-05-26T12:08:35.753 回答
0

运行 'rm -rf node_modules/react-native/scripts/third-party/glog-0.3.5/' 问题就解决了

于 2019-03-08T11:26:33.390 回答