From a7db8df2076f68ae9451ce1c77d7eb09d8cfeb14 Mon Sep 17 00:00:00 2001 From: Nicola Corti Date: Wed, 22 Jun 2022 20:38:36 -0700 Subject: [PATCH] Make Hermes the default engine on Android. (#34049) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/34049 This just flips the switch for having Hermes on by default on new projects for React Native. Changelog: [Android] [Changed] - Make Hermes the default engine on Android Reviewed By: neildhar, jpporto Differential Revision: D37354079 fbshipit-source-id: cb0391eb3927d13432e7d4b9efef7b8812938a98 --- template/android/app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/android/app/build.gradle b/template/android/app/build.gradle index 1647d41e49..bb4470cd73 100644 --- a/template/android/app/build.gradle +++ b/template/android/app/build.gradle @@ -78,7 +78,7 @@ import com.android.build.OutputFile */ project.ext.react = [ - enableHermes: false, // clean and rebuild if changing + enableHermes: true, // clean and rebuild if changing ] apply from: "../../node_modules/react-native/react.gradle"