[React-native] 안드로이드 react-native-vector-icons

강빈·2021년 12월 1일
1

Mobile App

목록 보기
10/11

react-native-vector-icons 를 안드로이드에서 확인했더니 에러가 나서 엑박으로 보여지고 있었다.

고럴 땐 android/app/build.gradle에
apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"
코드를 넣어주면 된당!

그리고 android/settings.gradle에

include ':react-native-vector-icons'
project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android')

넣어주기

참고:
https://stackoverflow.com/questions/38878852/react-native-vector-icons-wont-show-in-android-device

https://stackoverflow.com/questions/38878852/react-native-vector-icons-wont-show-in-android-device

0개의 댓글