프로젝트 생성
$ create-react-native-app GMAP
=> 'minimal' 모드로 선택
실행 확인
$ cd GMAP
$ yarn ios
> 빌드 에러
"error Failed to build iOS project. We ran "xcodebuild" command but it exited with error code 65. To debug build logs further, consider building your app with Xcode.app, by opening GAMPOverlays.xcodeproj"
> 해결방법
$ cd ios
$ pod install
React Native Maps 설치
$ yarn add react-native-maps
$ react-native link react-native-maps
> 빌드 에러
"AIRMap" was not found in the UIManager.
> 해결방법
ios podfile 을 다시 설치해줘야 한다.
$ cd ios
$ rm -rf build
$ pod install
'JavaScript > React' 카테고리의 다른 글
[RN] expo is out of date uninstall and run again to upgrade (0) | 2019.10.02 |
---|---|
[RN] 리액트 네이티브 프로젝트 시작하기 (0) | 2019.10.01 |
[RN] 왜 리액트 네이티브인가 (0) | 2019.10.01 |
[ReactJS] 재사용할 수 있는 컴포넌트 제작 (0) | 2019.09.17 |
[ReactJS] 이벤트 핸들링 - 리액트 방식 (0) | 2019.09.17 |
댓글