React 기본 항목에서 Hermes 활성화(>0.64)
1058 단어 androidreactnativejavascriptios
안드로이드:
android/app/build을 편집합니다.gradle 파일을 다음과 같이 변경합니다. React native version > 0.62에 적용됩니다.
project.ext.react = [
entryFile: "index.js",
- enableHermes: false // clean and rebuild if changing
+ enableHermes: true // clean and rebuild if changing
]
현재android 프로젝트를 재구성하면 변화를 볼 수 있습니다.네트워크 운영 체제:
에르메스가 iOS 가입 선택(에르메스가 iOS에 대한 지원은 아직 초기 단계)
React 기본 버전 >0.64에 적합
iOS에서 Hermes를 활성화하려면pod 파일에서 Hermes enabled를true로 설정한 다음pod 설치를 실행합니다.
바꾸기:
use_react_native!(:path => config["reactNativePath"])
및:use_react_native!(
:path => config[:reactNativePath],
# to enable hermes on iOS, change `false` to `true` and then install pods
:hermes_enabled => true
)
Reference
이 문제에 관하여(React 기본 항목에서 Hermes 활성화(>0.64)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/ajmal_hasan/enable-hermes-in-react-native-project-0-64-1dkh텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)