我有 React Native App。我安装了 react-native-vector-icons 库。在我在 Xcode 中收到此错误后:

多个命令产生“/Users/jocoders/Library/Developer/Xcode/DerivedData/openCalls-gtlsipogexxyteffomqvumgwiihd/Build/Products/Debug-iphonesimulator/openCalls.app/Fonts”:

  • 目标“openCalls”(项目“openCalls”)具有从“/Users/jocoders/openCalls/node_modules/react-native-vector-icons/Fonts”到“/Users/jocoders/Library/Developer/Xcode/DerivedData/”的复制命令openCalls-gtlsipogexxyteffomqvumgwiihd/Build/Products/Debug-iphonesimulator/openCalls.app/Fonts'
  • 目标“openCalls”(项目“openCalls”)具有从“/Users/jocoders/openCalls/node_modules/react-native-vector-icons/Fonts/Fonts”到“/Users/evgeniykireev/Library/Developer/Xcode/”的复制命令DerivedData/openCalls-gtlsipogexxyteffomqvumgwiihd/Build/Products/Debug-iphonesimulator/openCalls.app/Fonts'
  • 最佳答案

    在将应用程序升级到 > 0.6 时,我只是在使用 RN 0.61.4 和 Xcode 11.2.1 的 react-native-vector-icons 上遇到了同样的问题。我最终要做的是去构建阶段 -> [CP] 复制 Pod 资源 -> 删除对 react-native-vector-icons 字体的引用。然后重建,每个人都跑得很好。我确实注意到字体已经在左侧项目资源管理器的 Resources 文件夹中。我还注释掉了 Podfile 中的 # pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons' 行并运行了 pod install 但不确定是否影响它。这只是一个补丁,但希望它有所帮助。

    ios - 如何解决 Xcode 10 中的错误 : Multiple commands produce. ...../Fonts-LMLPHP

    关于ios - 如何解决 Xcode 10 中的错误 : Multiple commands produce. ...../Fonts,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57398832/

    10-10 23:29