【发布时间】:2021-07-05 17:17:44
【问题描述】:
W 试图将 react-native-vector-icons 添加到我的应用中。
这就是我正在做的:
-
yarn add react-native-vector-icons -
react-native link react-native-vector-icons -
打开 Xcode 项目并在名为 Files 的根目录中创建新组。
-
我将所有字体粘贴到文件夹中
node_modules/react-native-vector-itens -
并将这些行添加到
info.plist文件中:<key>UIAppFonts</key> <array> <string>AntDesign.ttf</string> <string>Entypo.ttf</string> <string>EvilIcons.ttf</string> <string>Feather.ttf</string> <string>FontAwesome.ttf</string> <string>FontAwesome5_Brands.ttf</string> <string>FontAwesome5_Regular.ttf</string> <string>FontAwesome5_Solid.ttf</string> <string>Fontisto.ttf</string> <string>Foundation.ttf</string> <string>Ionicons.ttf</string> <string>MaterialCommunityIcons.ttf</string> <string>MaterialIcons.ttf</string> <string>Octicons.ttf</string> <string>SimpleLineIcons.ttf</string> <string>Zocial.ttf</string> </array> -
cd ios -> pod install. -
yarn ios -
每个添加的字体我都得到了这个例外:
Build system information error: Multiple commands produce '/Users/flavio.luiz/Library/Developer/Xcode/DerivedData/grdiariesapp-glxxnoufhzcqqqehxmwglijwtgap/Build/Products/Debug-iphonesimulator/grdiariesapp.app/FontAwesome5_Brands.ttf': 1) Target 'grdiariesapp' (project 'grdiariesapp') has copy command from '/Users/flavio.luiz/Documents/learning/grdiariesapp/node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf' to '/Users/flavio.luiz/Library/Developer/Xcode/DerivedData/grdiariesapp-glxxnoufhzcqqqehxmwglijwtgap/Build/Products/Debug-iphonesimulator/grdiariesapp.app/FontAwesome5_Brands.ttf' 2) That command depends on command in Target 'grdiariesapp' (project 'grdiariesapp'): script phase “[CP] Copy Pods Resources”
谁能帮忙?
【问题讨论】:
-
0.60后手动删除xcode中的文件就可以了,不需要这样做。
-
是的!有效。要回复吗?
标签: ios xcode react-native yarnpkg react-native-vector-icons