1 | sudo gem install cocoapods | cs |
cocoapods 설치한다.
1 | react-native init PodTest | cs |
해당 프로젝트/ios 폴더로 이동한후 pod init 명령어를 실행한다.
편집기를 이용하여 Podfile 파일을 아래와 같이 편집한다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | # Uncomment the next line to define a global platform for your project # platform :ios, '9.0' target 'PodTest' do pod 'React', :path => '../node_modules/react-native' pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga' end post_install do |installer| installer.pods_project.targets.each do |target| if target.name == "React" target.remove_from_project end end end | cs |
pod install 명령어를 실행하면 target "프로젝트명" 하위에 입력된 라이브러리가 설치된다.
프로젝트명.xcworkspace 파일이 생성되면 정상적으로 실행된것이다.
출처 : 스튜디오 그로테스큐 강좌
https://zeddios.tistory.com/25
'React & React Native ' 카테고리의 다른 글
React Sass 적용하기 , Sass 적용이 안될때 (0) | 2019.05.02 |
---|---|
크롬웹브라우저에서 React 디버깅툴 설치하기 (0) | 2019.04.30 |
React Component Life Cycle [리액트 컴포넌트 라이프 사이클] (0) | 2019.01.24 |
HTML5 Geolocation Async 처리 [Geolocation 비동기처리 ] (0) | 2019.01.21 |
react-native-circular-progress 사용하기 (0) | 2019.01.19 |