React Native | IOS 14 에서 remote url image 못 불러오는 문제 해결하기
페이지 정보
작성자 최고관리자 조회10,044회 댓글0건본문
개발환경
react native : 0.62.*
native-base : 2.13.*
의 개발환경에서 ios 14 어플리케이션 개발시 외부url 이미지가 나오지 않는 버그(?)가 있습니다.
해결방법
- react-native 업그레이드
- native-base 업그레이드
# npm uninstall react-native
# npm install react-native
# npm uninstall native-base
# npm install native-base
# cd ios
# Podfile 수정
platform :ios, '9.0' -> platform :ios, '10.0'
pod 'ReactCommon/callinvoker', :path => "../node_modules/react-native/ReactCommon"
to
pod 'React-callinvoker', :path => "../node_modules/react-native/ReactCommon/callinvoker"
로 수정합니다.
# rm -Rf Podfile.lock
# npm install
# pod install
xcode 에서 빌드 확인