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 fastly.xcworkspace.*
I've ask for this here: https://github.com/oblador/react-native-vector-icons/issues/1144 but I haven't any answers.
I got this error when I run react-native run-ios:
IMAGE =>https://i.imgur.com/OORjgTe.png
My podfile
platform :ios, '9.0'
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
target 'fastly' do
# Pods for fastly
pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
pod 'FBLazyVector', :path => "../node_modules/react-native/Libraries/FBLazyVector"
pod 'FBReactNativeSpec', :path => "../node_modules/react-native/Libraries/FBReactNativeSpec"
pod 'RCTRequired', :path => "../node_modules/react-native/Libraries/RCTRequired"
pod 'RCTTypeSafety', :path => "../node_modules/react-native/Libraries/TypeSafety"
pod 'React', :path => '../node_modules/react-native/'
pod 'React-Core', :path => '../node_modules/react-native/'
pod 'React-CoreModules', :path => '../node_modules/react-native/React/CoreModules'
pod 'React-Core/DevSupport', :path => '../node_modules/react-native/'
pod 'React-RCTActionSheet', :path => '../node_modules/react-native/Libraries/ActionSheetIOS'
pod 'React-RCTAnimation', :path => '../node_modules/react-native/Libraries/NativeAnimation'
pod 'React-RCTBlob', :path => '../node_modules/react-native/Libraries/Blob'
pod 'React-RCTImage', :path => '../node_modules/react-native/Libraries/Image'
pod 'React-RCTLinking', :path => '../node_modules/react-native/Libraries/LinkingIOS'
pod 'React-RCTNetwork', :path => '../node_modules/react-native/Libraries/Network'
pod 'React-RCTSettings', :path => '../node_modules/react-native/Libraries/Settings'
pod 'React-RCTText', :path => '../node_modules/react-native/Libraries/Text'
pod 'React-RCTVibration', :path => '../node_modules/react-native/Libraries/Vibration'
pod 'React-Core/RCTWebSocket', :path => '../node_modules/react-native/'
pod 'React-cxxreact', :path => '../node_modules/react-native/ReactCommon/cxxreact'
pod 'React-jsi', :path => '../node_modules/react-native/ReactCommon/jsi'
pod 'React-jsiexecutor', :path => '../node_modules/react-native/ReactCommon/jsiexecutor'
pod 'React-jsinspector', :path => '../node_modules/react-native/ReactCommon/jsinspector'
pod 'ReactCommon/jscallinvoker', :path => "../node_modules/react-native/ReactCommon"
pod 'ReactCommon/turbomodule/core', :path => "../node_modules/react-native/ReactCommon"
pod 'Yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
target 'fastlyTests' do
inherit! :search_paths
# Pods for testing
end
use_native_modules!
end
target 'fastly-tvOS' do
# Pods for fastly-tvOS
target 'fastly-tvOSTests' do
inherit! :search_paths
# Pods for testing
end
end
Things I've do
- npm i react-native-vector-icons —s
- I've open the project with Xcode, then I created a new Group into the project name folder, it called
Fonts
, then I drag all fonts I'll use for the project, Finally I goes toinfo.plist
file and create a new keyFonts provided by application
, then created items with respective fonts names. - Run Shift + Command + K to clean last build <= That into Xcode.
- I follow all the steps is at Readme.md and I can't fix it, help pls.
XD
Also I've clean cache, run pod install, pod update, and can't get it works. I paste this pod 'RNVectorIcons', :path =>'../node_modules/react-native-vector-icons' into Podfile, but I think it's doesn't needed because I am using RN > 0.60. Help me please, I don't know what to do lol.