React 기본 항목에서 Hermes 활성화(>0.64)

Hermes는 오픈 소스 JavaScript 엔진입니다.많은 응용 프로그램에서 Hermes를 사용하면 시작 시간을 단축하고 메모리 사용을 줄이며 응용 프로그램의 크기를 줄일 수 있다.현재 Hermes는 선택할 수 있는 React 원생 기능입니다. 이 안내서는 그것을 어떻게 사용하는지 설명합니다.
안드로이드:
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
)

좋은 웹페이지 즐겨찾기