首页 > 解决方案 > 无法识别的字体系列“FontAwesome5Free-Solid”

问题描述

这突然发生了,我不知道发生了什么。

我开始运行我的应用程序并收到此错误:

在此处输入图像描述

我相信它来自 react-native-vector-icons。

我尝试切换到较旧版本的 react-native-vector-icons,但仍然收到相同的结果。

我还尝试卸载 react-native-vector-icons,当我这样做时,我收到编译错误。

** BUILD FAILED **


The following build commands failed:
    CompileC /Users/lukeschoenberger/Documents/Programming/news-
arg/test6/ios/build/test6/Build/Intermediates.noindex/Pods.build/Debug-
iphonesimulator/RNVectorIcons.build/Objects-
normal/x86_64/RNVectorIconsManager.o 
/Users/lukeschoenberger/Documents/Programming/news-
arg/test6/node_modules/react-native-vector-
icons/RNVectorIconsManager/RNVectorIconsManager.m normal x86_64 
objective-c com.apple.compilers.llvm.clang.1_0.compiler
(1 failure)

我在这一点上很困。

编辑:

在我链接 react-native-vector-desing 并清除构建文件夹后,我收到此错误:

Build system information
error: Multiple commands produce '/Users/lukeschoenberger/Documents/Programming/news-arg/test6/ios/build/test6/Build/Products/Debug-iphonesimulator/test6.app/AntDesign.ttf':
1) Target 'test6' (project 'test6') has copy command from 
'/Users/lukeschoenberger/Documents/Programming/news-
arg/test6/node_modules/native-base/Fonts/AntDesign.ttf' to 
'/Users/lukeschoenberger/Documents/Programming/news-
arg/test6/ios/build/test6/Build/Products/Debug-
iphonesimulator/test6.app/AntDesign.ttf'

2) Target 'test6' (project 'test6') has copy command from 
'/Users/lukeschoenberger/Documents/Programming/news-
arg/test6/node_modules/react-native-vector-icons/Fonts/AntDesign.ttf' to 
'/Users/lukeschoenberger/Documents/Programming/news-
arg/test6/ios/build/test6/Build/Products/Debug-
iphonesimulator/test6.app/AntDesign.ttf'

** BUILD FAILED **

标签: swiftxcodereact-native

解决方案


图标模块似乎没有正确链接。

你可以试试react-native link react-native-vector-icons

如果这不是解决方法,

删除 iOS 文件夹下 build 文件夹中的所有项目。然后用react-native run-ios.


推荐阅读