ios
-
[react-native] iOS 빌드 에러: Undefined symbols for architecture armv7javascript/react-native 2018. 12. 9. 23:29
[react-native Trouble Shooting] Problem> iOS 빌드 에러: Undefined symbols for architecture armv7 Solution> CxxBridge, DoubleConversion, Folly, GLog를 PodFile에 추가 예시) 1234567891011121314151617181920# Uncomment the next line to define a global platform for your projectplatform :ios, '9.0' target 'reactTest' do #Uncomment the next line if you're using Swift or would like to use dynamic frameworks #use_f..
-
[react-native] iOS 빌드 에러 Xcode 10: Build input file double-conversion cannot be foundjavascript/react-native 2018. 12. 9. 23:24
[react-native Trouble Shooting] Problem> iOS 빌드 중 에러 - Xcode 10: Build input file double-conversion cannot be found Solution> 다음 명령어를 프로젝트 루트 경로에서 실행 12$ cd node_modules/react-native/scripts && ./ios-install-third-party.sh && cd ../../../$ cd node_modules/react-native/third-party/glog-0.3.5/ && ../../scripts/ios-configure-glog.sh && cd ../../../../cs 참고: https://github.com/facebook/react-native/..
-
[react-native] iOS 빌드 에러: Duplicate Module Name: react-namejavascript/react-native 2018. 12. 9. 23:20
[react-native Trouble Shooting] Problem> iOS 빌드 중 에러 : Duplicate Module Name: react-name Solution> Pods 파일을 제거하고 새로 설치한다! 123cd iosrm -rf Podspod installcs 참고: https://stackoverflow.com/questions/50805753/duplicate-module-name-react-native