모바일/ReactNative
[React Native] react-native-vector-icons 사용(+library not found)
suhaha
2021. 3. 9. 18:04
React Native 0.63.x
npm install react-native-vector-icons --save
react-native link react-native-vector-icons
reactnative.dev/docs/linking-libraries-ios
Linking Libraries · React Native
Not every app uses all the native capabilities, and including the code to support all those features would impact the binary size... But we still want to support adding these features whenever you need them.
reactnative.dev
ios의 경우 pod install 필요
React Native vector icons를 사용하면서 겪은 에러들
- IOS
RNVectorIcons Not Found
Podfile에 등록되어있는 경로와 Xcode에서 Library Search Path가 등록되어 있는지 확인한다.
pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
- Android
build.gradle(app)에 아래 코드 추가
apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"