在尝试升级 react-native 版本后,我在 react native 中运行我的应用时遇到问题。
Xcode 10 中的错误显示:
mkdir: third-party: Permission denied
/Users/XXXX/New app/mobile_app/node_modules/react-native/scripts/ios-install-third-party.sh: line 49: cd: third-party: No such file or directory
我一直试图通过从项目中删除 node_module 克隆并返回到以前的 react-native 版本来再次安装该文件夹
更新:
将 node_module/react-native/script 下的第三方文件夹移动到 node_module/react-native 后,我得到了不同的错误
'config.h' file not found
Best Answer-推荐答案 strong>
好吧,尝试遵循以下解决方案:
假设您从项目根目录开始。您需要在终端中执行这些命令:
cd ios
rm -fr Pods
rm Podfiles.lock
pod install
cd node_modules/react-native/third-party/glog-0.3.4
sh ../../scripts/ios-configure-glog.sh
ios-configure-glog.sh 使用 ./configure 的相对路径。然后执行这个:
./configure
然后清除(command+k)并重建(command+R)。
让我知道它是否有效。
关于ios - 移动第三方文件夹后找不到“config.h”文件,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/54595046/
|