From 91a295478d3dfd01cb759eb6980760e03be50b39 Mon Sep 17 00:00:00 2001 From: Tomek Zawadzki Date: Mon, 2 Sep 2024 09:50:22 +0200 Subject: [PATCH 1/2] Enable new arch by default in example app (#465) --- example/android/gradle.properties | 2 +- example/ios/Podfile | 2 ++ example/ios/Podfile.lock | 14 +++++++------- 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/example/android/gradle.properties b/example/android/gradle.properties index a46a5b90..99fc223e 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=false +newArchEnabled=true # Use this property to enable or disable the Hermes JS engine. # If set to false, you will be using JSC instead. diff --git a/example/ios/Podfile b/example/ios/Podfile index 9d2949ee..18f59fae 100644 --- a/example/ios/Podfile +++ b/example/ios/Podfile @@ -14,6 +14,8 @@ if linkage != nil use_frameworks! :linkage => linkage.to_sym end +ENV['RCT_NEW_ARCH_ENABLED'] = '1' + target 'LiveMarkdownExample' do config = use_native_modules! diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock index 95903402..a7a44c11 100644 --- a/example/ios/Podfile.lock +++ b/example/ios/Podfile.lock @@ -1164,7 +1164,7 @@ PODS: - React-logger (= 0.74.5) - React-perflogger (= 0.74.5) - React-utils (= 0.74.5) - - RNLiveMarkdown (0.1.120): + - RNLiveMarkdown (0.1.123): - DoubleConversion - glog - hermes-engine @@ -1184,9 +1184,9 @@ PODS: - React-utils - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - RNLiveMarkdown/common (= 0.1.120) + - RNLiveMarkdown/common (= 0.1.123) - Yoga - - RNLiveMarkdown/common (0.1.120): + - RNLiveMarkdown/common (0.1.123): - DoubleConversion - glog - hermes-engine @@ -1422,9 +1422,9 @@ SPEC CHECKSUMS: React-perflogger: ed4e0c65781521e0424f2e5e40b40cc7879d737e React-RCTActionSheet: 49d53ff03bb5688ca4606c55859053a0cd129ea5 React-RCTAnimation: 07b4923885c52c397c4ec103924bf6e53b42c73e - React-RCTAppDelegate: 316e295076734baf9bdf1bfac7d92ab647aed930 + React-RCTAppDelegate: fc766c91b215650b9dd0dc7e19cb846165662d9f React-RCTBlob: 85c57b0d5e667ff8a472163ba3af0628171a64bb - React-RCTFabric: 97c1465ded4dc92841f5376a39e43e1b2c455f40 + React-RCTFabric: 7058f9ea5584364af58ba384312c7c3880631d28 React-RCTImage: b965c85bec820e2a9c154b1fb00a2ecdd59a9c92 React-RCTLinking: 75f04a5f27c26c4e73a39c50df470820d219df79 React-RCTNetwork: c1a9143f4d5778efc92da40d83969d03912ccc24 @@ -1440,10 +1440,10 @@ SPEC CHECKSUMS: React-runtimescheduler: cfbe85c3510c541ec6dc815c7729b41304b67961 React-utils: f242eb7e7889419d979ca0e1c02ccc0ea6e43b29 ReactCommon: f7da14a8827b72704169a48c929bcde802698361 - RNLiveMarkdown: 72025b6781bce19183ff7ca02fc7a440aa1bede6 + RNLiveMarkdown: 78cafdd646c2d71c0193349c7065c325a37954e5 SocketRocket: abac6f5de4d4d62d24e11868d7a2f427e0ef940d Yoga: 2246eea72aaf1b816a68a35e6e4b74563653ae09 -PODFILE CHECKSUM: 29bf1d7535c2bdaae02164f4bbb5570b52cbb398 +PODFILE CHECKSUM: 9b81b0f7bfba9e6fb4fa10efe8319f7860794e08 COCOAPODS: 1.14.3 From 14d5add7f929de09cb23bb4e2e3d51e76d0bbbc3 Mon Sep 17 00:00:00 2001 From: OSBotify Date: Mon, 2 Sep 2024 07:51:55 +0000 Subject: [PATCH 2/2] Bump version to 0.1.127 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 69e97309..2179e6d9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@expensify/react-native-live-markdown", - "version": "0.1.126", + "version": "0.1.127", "description": "Drop-in replacement for React Native's TextInput component with Markdown formatting.", "main": "lib/commonjs/index", "module": "lib/module/index",