From 73b3dcb92cd431e8af75fb7d93d7172c89c21f27 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 25 Oct 2023 14:25:49 -0400 Subject: [PATCH] v2.2.1: fixed copyAndroidNatives task not automatically running --- android/build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/android/build.gradle b/android/build.gradle index 628798911..5146d5d6c 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -97,4 +97,8 @@ task copyAndroidNatives() { } } } +} + +tasks.matching { it.name.contains("merge") && it.name.contains("JniLibFolders") }.configureEach { packageTask -> + packageTask.dependsOn 'copyAndroidNatives' } \ No newline at end of file