[React Native] react-native-vector-icons 사용(+library not found) 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. react.. 모바일/ReactNative 4년 전
React Native we ran xcodebuild command but it exited with error code 65 오류 해결하기 React native를 시작하면 꼭 한번에 실행된 적이 없었던거 같다 React Native 0.63.x 프로젝트 생성 후 react-native run-ios 실행시 빌드 실패에러가 났다. 사유는 we ran xcodebuild command but it exited with error code 65. 검색해보니 이미 많이 발생한 에러같다. ios 폴더에 가서 pod install도 해보고 build폴더 삭제도 해보고 npm install도 해봤으나 모두 실패.. 터미널로만 실행하는데는 오류 보기가 힘들어서 Xcode로 .xcworkspace를 실행했다. 실행 후 빌드를 하면 좀 더 자세한 오류가 나와있다. 나같은 경우는 library not found for -lCocoaAsyncSocket 인데 .. 모바일/ReactNative 4년 전
[React Native] React Native 설치, 환경설정 React Native로 간단한 TodoList 예제를 만들게 되었습니다. 이번 프로젝트에서는 react native cli를 사용한 ios와 안드로이드 앱을 생성할 예정입니다. React Native앱을 시작하기 전 필요한 환경설정입니다. 1. Node js 설치 homebrew를 사용하여 설치합니다. brew install node node --version NodeJS가 성공적으로 설치되었다면 --version 커맨드를 통해 버전을 확인할 수 있습니다. 2. Watchman 설치 brew install watchman watchman --version + cocoapods 설치 sudo gem install cocoapods pod --version 3. React Native Cli 설치 1번에서.. 모바일/ReactNative 4년 전