From a9b8f2857225454f9256e80a7b4b21ceb0ed7d45 Mon Sep 17 00:00:00 2001 From: Ryan Lepinski Date: Wed, 9 Oct 2024 10:06:51 -0700 Subject: [PATCH] Fix --- .github/workflows/ci.yml | 7 +++---- example/android/gradle.properties | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 82f55063..a1934a72 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,9 +61,8 @@ jobs: node-version-file: .nvmrc cache: 'npm' - - run: | - sed -i '' 's/newArchEnabled=true/newArchEnabled=false/' example/android/gradle.properties - npm run bootstrap - run: bash ./scripts/run_ci_tasks.sh -a + - run: sed -i '' 's/newArchEnabled=true/newArchEnabled=false/' example/android/gradle.properties + - run: npm run bootstrap + - run: bash ./scripts/run_ci_tasks.sh -a diff --git a/example/android/gradle.properties b/example/android/gradle.properties index 2cc63729..2f117e04 100644 --- a/example/android/gradle.properties +++ b/example/android/gradle.properties @@ -34,7 +34,7 @@ reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64 # your application. You should enable this flag either if you want # to write custom TurboModules/Fabric components OR use libraries that # are providing them. -newArchEnabled=true +newArchEnabled=false # Use this property to enable or disable the Hermes JS engine. # If set to false, you will be using JSC instead.