작성
·
60
0
이런게 뜨는데 npm라이브러리가 잘못된건가요?
react-native-cli라 expo라이브러리를 쓸수도 없고...
답변 3
0
To make font management smoother on Android, use this method:
Edit android/app/build.gradle
(NOT android/build.gradle
) and add:
apply from: file("../../node_modules/react-native-vector-icons/fonts.gradle")
To customize the fonts being copied, use:
project.ext.vectoricons = [
iconFontNames: [ 'MaterialIcons.ttf', 'EvilIcons.ttf' ] // Specify font files
]
apply from: file("../../node_modules/react-native-vector-icons/fonts.gradle")
이걸 보니 gladle 파일에 iconFontNames를 추가하니까 되더군요.
0
0