From d76e7dc95b12b5772fad347e03edd256245748c4 Mon Sep 17 00:00:00 2001 From: Chris Bobbe Date: Tue, 27 Feb 2024 13:37:45 -0800 Subject: [PATCH] android build: Update jsBundleDirRelease, fixing crash on startup See discussion: https://chat.zulip.org/#narrow/stream/243-mobile-team/topic/release.20build.20missing.20JS.20bundle/near/1746718 --- android/app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 49145ef67e..2298d1ffcf 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -79,7 +79,7 @@ apply plugin: "kotlin-android-extensions" project.ext.react = [ enableHermes : false, // clean and rebuild if changing // quasi-unstable: see commits 8f8a266af and 833d083a9 - jsBundleDirRelease: "$buildDir/intermediates/merged_assets/release/out" + jsBundleDirRelease: "$buildDir/intermediates/assets/release/mergeReleaseAssets" ] apply from: "../../node_modules/react-native/react.gradle"