运行 react-native run-ios时出现以下问题

error Failed to build iOS project. We ran "xcodebuild" command but it exited with error code 65.
 To debug build logs further, consider building your app with Xcode.app, by opening LessonFlatList.xcodeproj

解决办法:

1.删除项目依赖包以及 yarn 缓存

rm -rf node_modules && yarn cache clean

2.重新装包

yarn install

3.清除 React-Native 缓存

rm -rf ~/.rncache

4.下载 React-Native IOS 运行依赖
直接运行下载脚本,若直接下载完成,后面的步骤就不用看了,直接运行项目 react-native run-ios即可

node_modules/react-native/scripts/ios-install-third-party.sh

解决 IOS 运行依赖下载缓慢的问题
国内下载是相当的慢,这时候就要合理使用下载工具了。我使用的是 proxy-down,开源下载工具,可以配置代理。

查看要下载的文件

cat node_modules/react-native/scripts/ios-install-third-party.sh

输出如下:

#!/bin/bash
 多余的东西不显示
fetch_and_unpack glog-0.3.5.tar.gz https://github.com/google/glog/archive/v0.3.5.tar.gz 61067502c5f9769d111ea1ee3f74e6ddf0a5f9cc "\"$SCRIPTDIR/ios-configure-glog.sh\""
fetch_and_unpack double-conversion-1.1.6.tar.gz https://github.com/google/double-conversion/archive/v1.1.6.tar.gz 1c7d88afde3aaeb97bb652776c627b49e132e8e0
fetch_and_unpack boost_1_63_0.tar.gz https://github.com/react-native-community/boost-for-react-native/releases/download/v1.63.0-0/boost_1_63_0.tar.gz c3f57e1d22a995e608983effbb752b54b6eab741
fetch_and_unpack folly-2018.10.22.00.tar.gz https://github.com/facebook/folly/archive/v2018.10.22.00.tar.gz f70a75bfeb394363d2049a846bba118ffb3b368a

四个下载链接是关键,使用工具下载这四个文件。下载链接与 React-Native 版本紧密关联,请仔细查看文件版本。
1.
https://github.com/google/glog/archive/v0.3.5.tar.gz
2.https://github.com/google/double-conversion/archive/v1.1.6.tar.gz
3.https://github.com/react-native-community/boost-for-react-native/releases/download/v1.63.0-0/boost_1_63_0.tar.gz
4.https://github.com/facebook/folly/archive/v2018.10.22.00.tar.gz
下载完成后,新建文件夹 .rncache,将下载的四个文件移入到目录下

mkdir ~/.rncache

再次运行安装脚本,因为使用本地下载文件,所有运行起来很快。

node_modules/react-native/scripts/ios-install-third-party.sh

运行项目就可以跑起来了,首次启动会有点慢,耐心等会就行。

react-native run-ios

转自:https://www.cnblogs.com/stevexu/archive/2019/04/21/10745769.html

解决 React-Native mac 运行报错 error Failed to build iOS project. We ran "xcodebuild" command but it exite 转自:https://www.cnblogs.com/stevexu/archive/2019/04/21/10745769.html运行 react-native run-ios时出现以下问题error Failed to build iOS project. We ran "xcodebuild" command but it exited with error code 65. To ...
react-native-ios-modal 一个用于在 iOS 上显示模式的 react-native 组件,通过将 react-native 视图本地包装在UIViewController并呈现它。 由于这只是使用UIViewController ,因此该组件还支持设置UIModalPresentationStyle和UIModalTransitionStyle 。 支持设置isModalInPresentation并在模态使用pageSheet modalPresentationStyle时单独禁用本机向下滑动手势。 您可以在应用程序的任何位置使用ModalView ,并通过 ref 以编程方式或在安装/卸载ModalView时自动以模态方式呈现视图。 使用UIBlurEffect支持多个模态事件、多个模态以及具有透明背景或模糊背景。 您可以使用它,但它仅适用于 iO
使用和构建的本机 ios 和 android 的闹钟功能。 安装 (React Native >= 0.60.0) npm install --save react-native-simple-alarm yarn add react-native-simple-alarm 对于使用cocoapods iOS运行: $ cd ios/ && pod install 安装 (React Native <= 0.59.x) npm install --save react-native-simple-alarm yarn add react-native-simple-alarm 使用react-native link将库添加到您的项目中: 请按照安装进行操作。 $ cd example $ yarn install 如果ios: $ npm install --save react-native-smooth-pull-to-refresh $ yarn add react-native-smooth-pull-to-refresh import { PullToRefreshView } from "react-native-smooth-pull-to-refresh" ; export class App extends Component < AppProps> { public state : AppState = { title : "Pull down to refresh" ,
创建没有构建配置的Universal React Native应用。 npx create-react-native-app 一旦启动并运行Create React Native App,请访问,以获取有关使用React构建移动应用程序的更多信息。 准备在您的设备上构建的本机项目。 支持unimodule和自动链接。 OTA更新,并且手势开箱即用。 完全支持React Native Web。 即插即用自定义模板。 与Expo Client应用程序一起使用。 npx create-react-native-app创建一个新的本地React应用。 yarn iosreact-native run-ios )生成iOS应用(需要MacOS计算机)。 yarn android ( react-native run-android )生成Android应用程序。 yarn web ( expo start:web )在浏览器中运行网站。 默认情况下,您创建一个支持iOS,Android和Web项目。 通过选择“来自...的模板”选项,可以选择使用示例
1.error: Failed to build iOS project. We ranxcodebuildcommand but it exited with error code 65. To debug build logs further, consider building your app with Xcode.app, by opening demo.xcworkspace. Run CLI with --verbose flag for more details. 2.在Xcode
error Failed to build iOS project. We ran "xcodebuild" command but it exited with error code 65.- RN
一、遇到的问题 1.error Error: Failed to install CocoaPods dependencies for iOS project, which is required by this template. 大概意思: 错误:无法安装此模板所需的iOS项目的CocoaPods依赖项。 解决方案: 运行 "cd ./AwesomeProject/ios && p..
error Failed to build iOS project. We ran "xcodebuild" command but it exited with error code 65. To debug build logs further, consider building your app with Xcode.app, by opening .xcworkspace 解决方案:重新build clean 解决 React-Native mac 运行报错 error Failed to build iOS project. We ran "xcodebuild" command but it exite 解决 React-Native mac 运行报错 error Failed to build iOS project. We ran "xcodebuild" command but it exite qq_null: 请问显示ios-install-third-party文件不存在是怎么回事啊 Android APP不适配用户修改后的字体大小 小蜗牛向前冲: Arouter使用 FindThatBird: 跳转登录界面传入A页面的flag Android9.0无法加载http的url,net::ERR_CLEARTEXT_NOT_PERMITTED Litter.Monster_4812: Android9.0无法加载http的url,net::ERR_CLEARTEXT_NOT_PERMITTED lemonz666 Android_Mr_Zhao: 新建network_security_config.xml