From 22d0f9d3a90d94979e6f4b3825eeafbf02697a55 Mon Sep 17 00:00:00 2001 From: Tomek Zawadzki Date: Tue, 5 Nov 2024 18:27:11 +0100 Subject: [PATCH 1/2] Merge `packagingOptions` in build.gradle (#503) --- android/build.gradle | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 47645120..6aa3061f 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -144,6 +144,10 @@ android { packagingOptions { doNotStrip '**/**/*.so' + // For some reason gradle only complains about the duplicated version of librrc_root and libreact_render libraries + // while there are more libraries copied in intermediates folder of the lib build directory, we exclude + // only the ones that make the build fail (ideally we should only include libreanimated but we + // are only allowed to specify exclude patterns) excludes = [ "META-INF", "META-INF/**", @@ -152,17 +156,10 @@ android { "**/libjsi.so", "**/libreactnativejni.so", "**/libreactnative.so", + "**/libreact_render*.so", + "**/librrc_root.so", ] } - - packagingOptions { - // For some reason gradle only complains about the duplicated version of librrc_root and libreact_render libraries - // while there are more libraries copied in intermediates folder of the lib build directory, we exclude - // only the ones that make the build fail (ideally we should only include libreanimated but we - // are only allowed to specify exlude patterns) - exclude "**/libreact_render*.so" - exclude "**/librrc_root.so" - } } repositories { From ef34c5063864a3ccaf9a4056d70c4ec151f2aa4d Mon Sep 17 00:00:00 2001 From: OSBotify Date: Tue, 5 Nov 2024 17:28:51 +0000 Subject: [PATCH 2/2] Bump version to 0.1.181 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5bcdc96e..afdb3f25 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@expensify/react-native-live-markdown", - "version": "0.1.180", + "version": "0.1.181", "description": "Drop-in replacement for React Native's TextInput component with Markdown formatting.", "main": "lib/commonjs/index", "module": "lib/module/index",