I use react-native-vector-icons for icons
import Icon from 'react-native-vector-icons/FontAwesome5Pro'
All FontAwesome web fonts I put to assets/fonts and add this folder to rnpm section in package.json
"rnpm": {
"assets": [
"./assets/Fontawesome/webfonts/"
]
}
Then I run react-native link
All this fonts I see in info.plist but when
<Icon name="user" solid />
I see error unrecognized font family FontAwesome5Pro-Solid. It's funny, but on my old macbook all works fine, I just clone my repository and run project and this error appeared...
What can I to try to solve this?