Home unrecognized font family 'material design icons'
Post
Cancel

unrecognized font family 'material design icons'

환경

  • React Native
  • 사용중인 패키지: react-native-vector-icons
  • IOS에서 빌드시 위 에러 발생

Info.plist 파일에서 다음을 추가

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<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>Foundation.ttf</string>
    <string>Ionicons.ttf</string>
    <string>MaterialIcons.ttf</string>
    <string>MaterialCommunityIcons.ttf</string>
    <string>SimpleLineIcons.ttf</string>
    <string>Octicons.ttf</string>
    <string>Zocial.ttf</string>
</array>

참고: stack overflow

This post is licensed under CC BY 4.0 by the author.