React-native-vector-icons: `npm i` not autolinking in RN 0.61.5

Created on 13 Jan 2020  Â·  37Comments  Â·  Source: oblador/react-native-vector-icons

Environment

I installed react-native globally so I can do react-native info but react native is not installed globally when I created the app as I use npx react-native init

System:
    OS: macOS Mojave 10.14.6
    CPU: (16) x64 Intel(R) Core(TM) i9-9900K CPU @ 3.60GHz
    Memory: 35.52 MB / 32.00 GB
    Shell: 3.2.57 - /bin/bash
  Binaries:
    Node: 12.10.0 - /usr/local/bin/node
    npm: 6.13.4 - /usr/local/bin/npm
    Watchman: 4.9.0 - /usr/local/bin/watchman
  SDKs:
    iOS SDK:
      Platforms: iOS 12.4, macOS 10.14, tvOS 12.4, watchOS 5.3
    Android SDK:
      API Levels: 28, 29
      Build Tools: 28.0.3, 29.0.2
      System Images: android-28 | Intel x86 Atom_64, android-28 | Google APIs Intel x86 Atom, android-29 | Google APIs Intel x86 Atom
  IDEs:
    Android Studio: 3.4 AI-183.6156.11.34.5692245
    Xcode: 10.3/10G8 - /usr/bin/xcodebuild
  npmPackages:
    react: 16.9.0 => 16.9.0 
    react-native: 0.61.5 => 0.61.5 
  npmGlobalPackages:
    react-native-cli: 2.0.1

Description

Autolinking not working in RN 0.61.5 - I get the error on load of render of Unrecognized font family 'FontAwesome'

Reproducible Demo

Let us know how to reproduce the issue. Include a code sample, share a project, or share an app that reproduces the issue using https://snack.expo.io/. Please follow the guidelines for providing a MCVE: https://stackoverflow.com/help/mcve

  1. npx react-native init icontest
  2. cd icontest
  3. npm i react-native-vector-icons
  4. npx react-native start
  5. npx react-native run-ios
  6. As it loads you will see red screen with this error. Also you see in CLI:
error Could not find the following native modules: RNVectorIcons. Did you forget to run "pod install" ?

If it was autolinked, we wouldn't need to run pod install right?

Most helpful comment

Environment

I installed react-native globally so I can do react-native info but react native is not installed globally when I created the app as I use npx react-native init

System:
    OS: macOS Mojave 10.14.6
    CPU: (16) x64 Intel(R) Core(TM) i9-9900K CPU @ 3.60GHz
    Memory: 35.52 MB / 32.00 GB
    Shell: 3.2.57 - /bin/bash
  Binaries:
    Node: 12.10.0 - /usr/local/bin/node
    npm: 6.13.4 - /usr/local/bin/npm
    Watchman: 4.9.0 - /usr/local/bin/watchman
  SDKs:
    iOS SDK:
      Platforms: iOS 12.4, macOS 10.14, tvOS 12.4, watchOS 5.3
    Android SDK:
      API Levels: 28, 29
      Build Tools: 28.0.3, 29.0.2
      System Images: android-28 | Intel x86 Atom_64, android-28 | Google APIs Intel x86 Atom, android-29 | Google APIs Intel x86 Atom
  IDEs:
    Android Studio: 3.4 AI-183.6156.11.34.5692245
    Xcode: 10.3/10G8 - /usr/bin/xcodebuild
  npmPackages:
    react: 16.9.0 => 16.9.0 
    react-native: 0.61.5 => 0.61.5 
  npmGlobalPackages:
    react-native-cli: 2.0.1

Description

Autolinking not working in RN 0.61.5 - I get the error on load of render of Unrecognized font family 'FontAwesome'

Reproducible Demo

Let us know how to reproduce the issue. Include a code sample, share a project, or share an app that reproduces the issue using https://snack.expo.io/. Please follow the guidelines for providing a MCVE: https://stackoverflow.com/help/mcve

  1. npx react-native init icontest
  2. cd icontest
  3. npm i react-native-vector-icons
  4. npx react-native start
  5. npx react-native run-ios
  6. As it loads you will see red screen with this error. Also you see in CLI:
error Could not find the following native modules: RNVectorIcons. Did you forget to run "pod install" ?

If it was autolinked, we wouldn't need to run pod install right?

Found the solution
for iOS, you need to add this into your 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>Roboto_medium.ttf</string> <string>Roboto.ttf</string> <string>rubicon-icon-font.ttf</string> <string>SimpleLineIcons.ttf</string> <string>Zocial.ttf</string> </array>

for android, you need to add fonts in android/app/src/main/assets folder
link to download the fonts : https://drive.google.com/open?id=1eK37W0iN3I0HVdOBwYMyKNs54w-MrLyp

All 37 comments

Same issue, not able to use

react-native-vector-icons

even when I do pod install

You can try:
pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons/RNVectorIcons.podspec'

@assaqqaf pod install isn't fixing it in iOS. Also that won't fix it in Android. Thanks though for the suggestion! :)

Environment

I installed react-native globally so I can do react-native info but react native is not installed globally when I created the app as I use npx react-native init

System:
    OS: macOS Mojave 10.14.6
    CPU: (16) x64 Intel(R) Core(TM) i9-9900K CPU @ 3.60GHz
    Memory: 35.52 MB / 32.00 GB
    Shell: 3.2.57 - /bin/bash
  Binaries:
    Node: 12.10.0 - /usr/local/bin/node
    npm: 6.13.4 - /usr/local/bin/npm
    Watchman: 4.9.0 - /usr/local/bin/watchman
  SDKs:
    iOS SDK:
      Platforms: iOS 12.4, macOS 10.14, tvOS 12.4, watchOS 5.3
    Android SDK:
      API Levels: 28, 29
      Build Tools: 28.0.3, 29.0.2
      System Images: android-28 | Intel x86 Atom_64, android-28 | Google APIs Intel x86 Atom, android-29 | Google APIs Intel x86 Atom
  IDEs:
    Android Studio: 3.4 AI-183.6156.11.34.5692245
    Xcode: 10.3/10G8 - /usr/bin/xcodebuild
  npmPackages:
    react: 16.9.0 => 16.9.0 
    react-native: 0.61.5 => 0.61.5 
  npmGlobalPackages:
    react-native-cli: 2.0.1

Description

Autolinking not working in RN 0.61.5 - I get the error on load of render of Unrecognized font family 'FontAwesome'

Reproducible Demo

Let us know how to reproduce the issue. Include a code sample, share a project, or share an app that reproduces the issue using https://snack.expo.io/. Please follow the guidelines for providing a MCVE: https://stackoverflow.com/help/mcve

  1. npx react-native init icontest
  2. cd icontest
  3. npm i react-native-vector-icons
  4. npx react-native start
  5. npx react-native run-ios
  6. As it loads you will see red screen with this error. Also you see in CLI:
error Could not find the following native modules: RNVectorIcons. Did you forget to run "pod install" ?

If it was autolinked, we wouldn't need to run pod install right?

Found the solution
for iOS, you need to add this into your 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>Roboto_medium.ttf</string> <string>Roboto.ttf</string> <string>rubicon-icon-font.ttf</string> <string>SimpleLineIcons.ttf</string> <string>Zocial.ttf</string> </array>

for android, you need to add fonts in android/app/src/main/assets folder
link to download the fonts : https://drive.google.com/open?id=1eK37W0iN3I0HVdOBwYMyKNs54w-MrLyp

@sfs-atul this works for me, thanks!

We are closing this issue. Everyone who has the same problem could use @sfs-atul solution.

if that's not helping, feel free to reopen the issue

hi
when i install this package in react native(0.61.5)
at the end install i get this message
"
21 packages are looking for funding
run npm fund for details

fixed 0 of 4 vulnerabilities in 957670 scanned packages
4 vulnerabilities required manual review and could not be updated
"
and when i use it my icon not show me real icon and show me just box with X (in android)
plz help me

hi
when i install this package in react native(0.61.5)
at the end install i get this message
"
21 packages are looking for funding
run npm fund for details

fixed 0 of 4 vulnerabilities in 957670 scanned packages
4 vulnerabilities required manual review and could not be updated
"
and when i use it my icon not show me real icon and show me just box with X
plz help me

You don't need to worry about funding and 4 vulnerabilities.
Make sure the icon name is correct for both ios and android, as some times there are different names for ios and android.

@sfs-atul thanks for your help, but i fix it with this solution

Go to android/app/build.gradle add this at the end of file => apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"

I'm trying all the ways you wrote guys but it's not work in IOS!
in every build, I got this Unrecognized font family 'Ionicons'

I'm trying all the ways you wrote guys but it's not work in IOS!
in every build, I got this Unrecognized font family 'Ionicons'

Have you tried adding fonts in info.plist ?

I'm trying all the ways you wrote guys but it's not work in IOS!
in every build, I got this Unrecognized font family 'Ionicons'

Have you tried adding fonts in info.plist ?

Yes I do

I'm trying all the ways you wrote guys but it's not work in IOS!
in every build, I got this Unrecognized font family 'Ionicons'

Have you tried adding fonts in info.plist ?

Yes I do

add all fonts from the library like this - https://medium.com/react-native-training/adding-custom-fonts-to-react-native-b266b41bff7f

Solved here...
i only added this after importing the icon:

import Icon from 'react-native-vector-icons/FontAwesome';
Icon.loadFont();

Am also getting same problem. when give pod install the ios app will be crash

Am also getting same problem. when give pod install the ios app will be crash

You need to add all the fonts in 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>Roboto_medium.ttf</string>
        <string>Roboto.ttf</string>
        <string>rubicon-icon-font.ttf</string>
        <string>SimpleLineIcons.ttf</string>
        <string>Zocial.ttf</string>
    </array>

No need to add anything in podfile

yes already there in info.plist
UIAppFonts

AntDesign.ttf
Entypo.ttf
EvilIcons.ttf
Feather.ttf
FontAwesome.ttf
FontAwesome5_Brands.ttf
FontAwesome5_Regular.ttf
FontAwesome5_Solid.ttf
Fontisto.ttf
Foundation.ttf
Ionicons.ttf
MaterialCommunityIcons.ttf
MaterialIcons.ttf
Octicons.ttf
SimpleLineIcons.ttf
Zocial.ttf

<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>

<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>

is Android working fine?

Command line invocation:
/Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -workspace safehomefoundation.xcworkspace -configuration Debug -scheme safehomefoundation -destination id=A0A126AA-ECCD-4956-985E-672947F6E488

note: Using new build system
note: Building targets in parallel
note: Planning build
note: Using build description from disk
Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Zocial.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/Zocial.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Zocial.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”

Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/SimpleLineIcons.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/SimpleLineIcons.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”

Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Octicons.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/Octicons.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Octicons.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”

Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/MaterialIcons.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/MaterialIcons.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”

Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/MaterialCommunityIcons.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/MaterialCommunityIcons.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”

Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Ionicons.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/Ionicons.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Ionicons.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”

Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Foundation.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/Foundation.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Foundation.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”

Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Fontisto.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/Fontisto.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Fontisto.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”

Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Solid.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Solid.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”

Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Regular.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Regular.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”

Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Brands.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Brands.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”

Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”

Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Feather.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/Feather.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Feather.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”

Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/EvilIcons.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/EvilIcons.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”

Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Entypo.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/Entypo.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Entypo.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”

Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/AntDesign.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/AntDesign.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/AntDesign.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”

warning: no rule to process file '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/ios/Pods/Flipper-RSocket/rsocket/README.md' of type 'net.daringfireball.markdown' for architecture 'x86_64' (in target 'Flipper-RSocket' from project 'Pods')
warning: no rule to process file '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/ios/Pods/Flipper-RSocket/rsocket/benchmarks/CMakeLists.txt' of type 'text' for architecture 'x86_64' (in target 'Flipper-RSocket' from project 'Pods')
warning: no rule to process file '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/ios/Pods/Flipper-RSocket/rsocket/benchmarks/README.md' of type 'net.daringfireball.markdown' for architecture 'x86_64' (in target 'Flipper-RSocket' from project 'Pods')
warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 5.0, but the range of supported deployment target versions is 8.0 to 13.6.99. (in target 'CocoaAsyncSocket' from project 'Pods')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/AntDesign.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Entypo.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/EvilIcons.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Feather.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Brands.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Regular.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Solid.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Fontisto.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Foundation.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Ionicons.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/MaterialCommunityIcons.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/MaterialIcons.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Octicons.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/SimpleLineIcons.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Zocial.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 6.0, but the range of supported deployment target versions is 8.0 to 13.6.99. (in target 'OpenSSL-Universal' from project 'Pods')

* BUILD FAILED *

@helloamarnath
Goto File> Workspace settings > Build System - Change it to legacy build system

@raazatul7 still getting same error
`npx react-native run-ios
error React Native CLI uses autolinking for native dependencies, but the following modules are linked manually:

  • react-native-vector-icons (to unlink run: "react-native unlink react-native-vector-icons")
    This is likely happening when upgrading React Native from below 0.60 to 0.60 or above. Going forward, you can unlink this dependency via "react-native unlink " and it will be included in your app automatically. If a library isn't compatible with autolinking, disregard this message and notify the library maintainers.
    Read more about autolinking: https://github.com/react-native-community/cli/blob/master/docs/autolinking.md
    info Found Xcode workspace "safehomefoundation.xcworkspace"
    info Building (using "xcodebuild -workspace safehomefoundation.xcworkspace -configuration Debug -scheme safehomefoundation -destination id=A0A126AA-ECCD-4956-985E-672947F6E488")
    ............................................................................
    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 safehomefoundation.xcworkspace. Run CLI with --verbose flag for more details.
    Command line invocation:
    /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -workspace safehomefoundation.xcworkspace -configuration Debug -scheme safehomefoundation -destination id=A0A126AA-ECCD-4956-985E-672947F6E488

note: Using new build system
note: Building targets in parallel
note: Planning build
note: Using build description from disk
Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Zocial.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/Zocial.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Zocial.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”

Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/SimpleLineIcons.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/SimpleLineIcons.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”

Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Octicons.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/Octicons.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Octicons.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”

Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/MaterialIcons.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/MaterialIcons.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”

Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/MaterialCommunityIcons.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/MaterialCommunityIcons.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”

Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Ionicons.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/Ionicons.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Ionicons.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”

Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Foundation.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/Foundation.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Foundation.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”

Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Fontisto.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/Fontisto.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Fontisto.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”

Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Solid.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Solid.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”

Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Regular.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Regular.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”

Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Brands.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Brands.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”

Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”

Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Feather.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/Feather.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Feather.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”

Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/EvilIcons.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/EvilIcons.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”

Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Entypo.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/Entypo.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Entypo.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”

Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/AntDesign.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/AntDesign.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/AntDesign.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”

warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 6.0, but the range of supported deployment target versions is 8.0 to 13.6.99. (in target 'OpenSSL-Universal' from project 'Pods')
warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 5.0, but the range of supported deployment target versions is 8.0 to 13.6.99. (in target 'CocoaAsyncSocket' from project 'Pods')
warning: no rule to process file '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/ios/Pods/Flipper-RSocket/rsocket/README.md' of type 'net.daringfireball.markdown' for architecture 'x86_64' (in target 'Flipper-RSocket' from project 'Pods')
warning: no rule to process file '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/ios/Pods/Flipper-RSocket/rsocket/benchmarks/CMakeLists.txt' of type 'text' for architecture 'x86_64' (in target 'Flipper-RSocket' from project 'Pods')
warning: no rule to process file '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/ios/Pods/Flipper-RSocket/rsocket/benchmarks/README.md' of type 'net.daringfireball.markdown' for architecture 'x86_64' (in target 'Flipper-RSocket' from project 'Pods')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/AntDesign.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Entypo.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/EvilIcons.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Feather.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Brands.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Regular.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Solid.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Fontisto.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Foundation.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Ionicons.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/MaterialCommunityIcons.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/MaterialIcons.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Octicons.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/SimpleLineIcons.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Zocial.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')

* BUILD FAILED *
`

Help me how to install react-native-vector-icons properly with below config. once install then given pod install inside ios folder am not able to debug the ios app

"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/bottom-tabs": "^5.7.2",
"@react-navigation/material-bottom-tabs": "^5.2.14",
"@react-navigation/native": "^5.7.1",
"@react-navigation/stack": "^5.7.1",
"lottie-ios": "^3.1.8",
"lottie-react-native": "^3.5.0",
"react": "16.13.1",
"react-native": "0.63.2",
"react-native-gesture-handler": "^1.7.0",
"react-native-paper": "^4.0.1",
"react-native-reanimated": "^1.10.1",
"react-native-safe-area-context": "^3.1.1",
"react-native-screens": "^2.9.0",
"react-native-vector-icons": "^7.0.0"

Note for android everything working fine
http://prnt.sc/tqh66m

IOS only got error

Help me how to install react-native-vector-icons properly with below config. once install then given pod install inside ios folder am not able to debug the ios app

"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/bottom-tabs": "^5.7.2",
"@react-navigation/material-bottom-tabs": "^5.2.14",
"@react-navigation/native": "^5.7.1",
"@react-navigation/stack": "^5.7.1",
"lottie-ios": "^3.1.8",
"lottie-react-native": "^3.5.0",
"react": "16.13.1",
"react-native": "0.63.2",
"react-native-gesture-handler": "^1.7.0",
"react-native-paper": "^4.0.1",
"react-native-reanimated": "^1.10.1",
"react-native-safe-area-context": "^3.1.1",
"react-native-screens": "^2.9.0",
"react-native-vector-icons": "^7.0.0"

I am using

"react-native": "0.63.2",
"react-native-vector-icons": "^7.0.0",

My podfile

require_relative '../node_modules/react-native/scripts/react_native_pods'
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'

platform :ios, '10.0'

target 'Peep' do
  config = use_native_modules!

  use_react_native!(:path => config["reactNativePath"])

  pod 'Firebase/Analytics'
  pod 'Firebase/Crashlytics'


  target 'PeepTests' do
    inherit! :complete
    # Pods for testing
  end

  # Enables Flipper.
  #
  # Note that if you have use_frameworks! enabled, Flipper will not work and
  # you should disable these next few lines.
  use_flipper!
  post_install do |installer|
    flipper_post_install(installer)
  end
end

Added all the fonts in Info.plist
That's it!

My Class

import React, {Component} from 'react';
import {View, Text, StyleSheet, Pressable} from 'react-native';
import {connect} from 'react-redux';
import {fetchProduct} from '../../../redux/actions/productAction';
import {Button} from 'native-base';
import LocalStorage from '../../../common/LocalStorage';
import fontFam from '../../../common/Fonts';
import FontAwesome from 'react-native-vector-icons/FontAwesome';
class Login extends Component {
  render() {
    return (
      <View style={styles.container}>
        <Button
          onPress={() => {
            LocalStorage.save('isLogin', true);
            this.props.navigation.navigate('Home');
          }}>
          <Text>Login</Text>
        </Button>
        <Text style={{fontFamily: fontFam.extra_bold}}>
          A quick brown fox jumped over the top.
        </Text>
        <FontAwesome name="glass" />
      </View>
    );
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    alignItems: 'center',
    justifyContent: 'center',
  },
});

const mapStateToProps = (state) => {
  return {
    // productData: state.product,
  };
};

const mapDispatchToProps = (dispatch) => {
  return {
    // getProduct: () => {
    //   dispatch(fetchProduct());
    // },
  };
};

export default connect(mapStateToProps, mapDispatchToProps)(Login);

I hope this will help

@raazatul7 please help the installation instruction on IOS. i readme installation is not clear

@raazatul7 please help the installation instruction on IOS. i readme installation is not clear

1.npm install --save react-native-vector-icons
No need to link anything
2.add all the fonts in info.plist
Voila! that's it.

@raazatul7 i do the same only. its work.
but when I do pod install. its break everything.

@raazatul7 i do the same only. its work.
but when I do pod install. its break everything.

Please share your podfile

1) here is the pod

require_relative '../node_modules/react-native/scripts/react_native_pods'
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'

platform :ios, '10.0'

target 'safehomefoundation' do
  config = use_native_modules!

  use_react_native!(:path => config["reactNativePath"])

  target 'safehomefoundationTests' do
    inherit! :complete
    # Pods for testing
  end

  # Enables Flipper.
  #
  # Note that if you have use_frameworks! enabled, Flipper will not work and
  # you should disable these next few lines.
  use_flipper!
  post_install do |installer|
    flipper_post_install(installer)
  end
end

target 'safehomefoundation-tvOS' do
  # Pods for safehomefoundation-tvOS

  target 'safehomefoundation-tvOSTests' do
    inherit! :search_paths
    # Pods for testing
  end
end

Here is my info.plist

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>CFBundleDevelopmentRegion</key>
    <string>en</string>
    <key>CFBundleDisplayName</key>
    <string>safehomefoundation</string>
    <key>CFBundleExecutable</key>
    <string>$(EXECUTABLE_NAME)</string>
    <key>CFBundleIdentifier</key>
    <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
    <key>CFBundleInfoDictionaryVersion</key>
    <string>6.0</string>
    <key>CFBundleName</key>
    <string>$(PRODUCT_NAME)</string>
    <key>CFBundlePackageType</key>
    <string>APPL</string>
    <key>CFBundleShortVersionString</key>
    <string>1.0</string>
    <key>CFBundleSignature</key>
    <string>????</string>
    <key>CFBundleVersion</key>
    <string>1</string>
    <key>LSRequiresIPhoneOS</key>
    <true/>
    <key>NSAppTransportSecurity</key>
    <dict>
        <key>NSAllowsArbitraryLoads</key>
        <true/>
        <key>NSExceptionDomains</key>
        <dict>
            <key>localhost</key>
            <dict>
                <key>NSExceptionAllowsInsecureHTTPLoads</key>
                <true/>
            </dict>
        </dict>
    </dict>
    <key>NSLocationWhenInUseUsageDescription</key>
    <string/>
    <key>UILaunchStoryboardName</key>
    <string>LaunchScreen</string>
    <key>UIRequiredDeviceCapabilities</key>
    <array>
        <string>armv7</string>
    </array>
    <key>UISupportedInterfaceOrientations</key>
    <array>
        <string>UIInterfaceOrientationPortrait</string>
        <string>UIInterfaceOrientationLandscapeLeft</string>
        <string>UIInterfaceOrientationLandscapeRight</string>
    </array>
    <key>UIViewControllerBasedStatusBarAppearance</key>
    <false/>
    <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>
</dict>
</plist>

Here is my error

info Found Xcode workspace "safehomefoundation.xcworkspace"
info Building (using "xcodebuild -workspace safehomefoundation.xcworkspace -configuration Debug -scheme safehomefoundation -destination id=A0A126AA-ECCD-4956-985E-672947F6E488")
............................................................................
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 safehomefoundation.xcworkspace. Run CLI with --verbose flag for more details.
Command line invocation:
    /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -workspace safehomefoundation.xcworkspace -configuration Debug -scheme safehomefoundation -destination id=A0A126AA-ECCD-4956-985E-672947F6E488

note: Using new build system
note: Building targets in parallel
note: Planning build
note: Using build description from disk
Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Zocial.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/Zocial.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Zocial.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”


Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/SimpleLineIcons.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/SimpleLineIcons.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”


Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Octicons.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/Octicons.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Octicons.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”


Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/MaterialIcons.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/MaterialIcons.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”


Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/MaterialCommunityIcons.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/MaterialCommunityIcons.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”


Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Ionicons.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/Ionicons.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Ionicons.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”


Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Foundation.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/Foundation.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Foundation.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”


Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Fontisto.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/Fontisto.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Fontisto.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”


Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Solid.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Solid.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”


Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Regular.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Regular.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”


Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Brands.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Brands.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”


Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”


Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Feather.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/Feather.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Feather.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”


Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/EvilIcons.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/EvilIcons.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”


Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Entypo.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/Entypo.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Entypo.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”


Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/AntDesign.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/AntDesign.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/AntDesign.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”


warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/AntDesign.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Entypo.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/EvilIcons.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Feather.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Brands.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Regular.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Solid.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Fontisto.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Foundation.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Ionicons.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/MaterialCommunityIcons.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/MaterialIcons.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Octicons.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/SimpleLineIcons.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Zocial.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 6.0, but the range of supported deployment target versions is 8.0 to 13.6.99. (in target 'OpenSSL-Universal' from project 'Pods')
warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 5.0, but the range of supported deployment target versions is 8.0 to 13.6.99. (in target 'CocoaAsyncSocket' from project 'Pods')
warning: no rule to process file '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/ios/Pods/Flipper-RSocket/rsocket/README.md' of type 'net.daringfireball.markdown' for architecture 'x86_64' (in target 'Flipper-RSocket' from project 'Pods')
warning: no rule to process file '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/ios/Pods/Flipper-RSocket/rsocket/benchmarks/CMakeLists.txt' of type 'text' for architecture 'x86_64' (in target 'Flipper-RSocket' from project 'Pods')
warning: no rule to process file '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/ios/Pods/Flipper-RSocket/rsocket/benchmarks/README.md' of type 'net.daringfireball.markdown' for architecture 'x86_64' (in target 'Flipper-RSocket' from project 'Pods')

** BUILD FAILED **

Goto File> Workspace settings > Build System - Change it to legacy build system

@helloamarnath

Did you tried this...

Yes i tried this. get a long error.
here I past part of error

info Found Xcode workspace "safehomefoundation.xcworkspace"
info Building (using "xcodebuild -workspace safehomefoundation.xcworkspace -configuration Debug -scheme safehomefoundation -destination id=A0A126AA-ECCD-4956-985E-672947F6E488")
............................................................................
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 safehomefoundation.xcworkspace. Run CLI with --verbose flag for more details.
Command line invocation:
    /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -workspace safehomefoundation.xcworkspace -configuration Debug -scheme safehomefoundation -destination id=A0A126AA-ECCD-4956-985E-672947F6E488

note: Using new build system
note: Building targets in parallel
note: Planning build
note: Using build description from disk
Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Zocial.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/Zocial.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Zocial.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”


Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/SimpleLineIcons.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/SimpleLineIcons.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”


Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Octicons.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/Octicons.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Octicons.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”


Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/MaterialIcons.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/MaterialIcons.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”


Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/MaterialCommunityIcons.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/MaterialCommunityIcons.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”


Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Ionicons.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/Ionicons.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Ionicons.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”


Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Foundation.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/Foundation.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Foundation.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”


Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Fontisto.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/Fontisto.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Fontisto.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”


Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Solid.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Solid.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”


Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Regular.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Regular.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”


Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Brands.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Brands.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”


Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”


Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Feather.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/Feather.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Feather.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”


Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/EvilIcons.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/EvilIcons.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”


Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Entypo.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/Entypo.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Entypo.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”


Build system information
error: Multiple commands produce '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/AntDesign.ttf':
1) Target 'safehomefoundation' (project 'safehomefoundation') has copy command from '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/node_modules/react-native-vector-icons/Fonts/AntDesign.ttf' to '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/AntDesign.ttf'
2) That command depends on command in Target 'safehomefoundation' (project 'safehomefoundation'): script phase “[CP] Copy Pods Resources”


warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/AntDesign.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Entypo.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/EvilIcons.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Feather.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Brands.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Regular.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/FontAwesome5_Solid.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Fontisto.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Foundation.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Ionicons.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/MaterialCommunityIcons.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/MaterialIcons.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Octicons.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/SimpleLineIcons.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: duplicate output file '/Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Products/Debug-iphonesimulator/safehomefoundation.app/Zocial.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/helloamarnath/Library/Developer/Xcode/DerivedData/safehomefoundation-fwuhhjvinluperbvvziyurtzeprn/Build/Intermediates.noindex/safehomefoundation.build/Debug-iphonesimulator/safehomefoundation.build/Script-741E6629723E053300211D14.sh (in target 'safehomefoundation' from project 'safehomefoundation')
warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 6.0, but the range of supported deployment target versions is 8.0 to 13.6.99. (in target 'OpenSSL-Universal' from project 'Pods')
warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 5.0, but the range of supported deployment target versions is 8.0 to 13.6.99. (in target 'CocoaAsyncSocket' from project 'Pods')
warning: no rule to process file '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/ios/Pods/Flipper-RSocket/rsocket/README.md' of type 'net.daringfireball.markdown' for architecture 'x86_64' (in target 'Flipper-RSocket' from project 'Pods')
warning: no rule to process file '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/ios/Pods/Flipper-RSocket/rsocket/benchmarks/CMakeLists.txt' of type 'text' for architecture 'x86_64' (in target 'Flipper-RSocket' from project 'Pods')
warning: no rule to process file '/Users/helloamarnath/Documents/projects/reactnativesafehomefoundation/ios/Pods/Flipper-RSocket/rsocket/benchmarks/README.md' of type 'net.daringfireball.markdown' for architecture 'x86_64' (in target 'Flipper-RSocket' from project 'Pods')

** BUILD FAILED **

@helloamarnath
You can change the legacy to new build ..also keep try to delete drive data

Find a solution, simply remove duplicate reference fonts in "Copy Bundle Resources" NOT in "[CP] Copy Pods Resources"
https://github.com/oblador/react-native-vector-icons/issues/1074

This is happening to me when I am linking custom fonts using react-native.config.js.

For example, I have some custom fonts which I use, and I define the directory inside react-native.config.js's "assets" key.

module.exports = {
    project: {
        android: {},
    },
    assets: ['./src/assets/fonts/'],
};

Then I run

npx react-native link

This then links my fonts as expected, however it ALSO links the font's contained within react-native-vector-icons.

It seems that these fonts are being automatically linked whenever you run npx react-native link (in and of itself), because the fonts get linked manually when you run the link command, the automatic linking of fonts then of course produces duplicates.

I resolved this by simply deleting the fonts from react-native-vector-icons from Build Phases > Copy Bundle Resources.

Perhaps there is a command that explicitly ONLY links the font's from your react-native.config.js - That is something I will look into myself shorty.

Hope the info helps.

Was this page helpful?
0 / 5 - 0 ratings