반응형
device 에서 react-native-vector-icon 적용 시, 깨지는 경우 해결 방법입니다.
(사실 무지 간단합니다.)
- Android
android/app/build.gradle 에 아래 한줄 추가한 후 재 빌드 하면 해결
apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"
만약, gradlew clean 후에 깨지는 현상이라면 아래 참조하세요
- IOS
add code to
ios/AppName/Info.plist
<key>UIAppFonts</key>
<array>
<string>AntDesign.ttf</string>
<string>Entypo.ttf</string>
<string>EvilIcons.ttf</string>
<string>Feather.ttf</string>
<string>FontAwesome.ttf</string>
<string>FontAwesome5_Brands.ttf</string>
<string>FontAwesome5_Regular.ttf</string>
<string>FontAwesome5_Solid.ttf</string>
<string>Fontisto.ttf</string>
<string>Foundation.ttf</string>
<string>Ionicons.ttf</string>
<string>MaterialCommunityIcons.ttf</string>
<string>MaterialIcons.ttf</string>
<string>Octicons.ttf</string>
<string>SimpleLineIcons.ttf</string>
<string>Zocial.ttf</string>
</array>
xcode 에서 아래와 같이 나와야 하니 참고하세요.
반응형
'Mobile 개발 > RN(React Native)' 카테고리의 다른 글
Calendar Firebase 연동 library(ReactNative/Flutter) (0) | 2021.09.23 |
---|---|
xCode error 해결 - Errors were encountered while preparing your device for development. (0) | 2021.09.02 |
리액트 네이티브 2021 ui kit top9 (0) | 2021.05.19 |
2021년 주목받는 하이브리드 앱 프레임워크 5가지 (0) | 2021.03.13 |
React Native Firebase AdMob 적용, 수입오류 해결 (0) | 2021.03.06 |