-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
Description
React Native 0.70 버전 부터 기본적으로 herrmes engine을 사용하고 있습니다.
하지만 IOS에서 hermes engine을 사용했을 때 빌드 오류 이슈가 계속 발생되어 현재 기본 JS Engine으로 설정한 상태입니다
ios/Podfile
use_react_native!(
:path => config[:reactNativePath],
// hermes engine 미사용으로 설정
:hermes_enabled => false,
# Enables Flipper.
#
# Note that if you have use_frameworks! enabled, Flipper will not work and
# you should disable the next line.
:flipper_configuration => flipper_config,
# An absolute path to your application root.
:app_path => "#{Pod::Config.instance.installation_root}/.."
)
Reactions are currently unavailable