-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
31 changed files
with
1,862 additions
and
1,569 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
diff --git a/ReactAndroid/build.gradle.kts b/ReactAndroid/build.gradle.kts | ||
index 4909aeddba5dd256882dcf1cef170b6e948935ca..b1cfd32e07fb7c1ec182aab2a33414f670ccd229 100644 | ||
--- a/ReactAndroid/build.gradle.kts | ||
+++ b/ReactAndroid/build.gradle.kts | ||
@@ -155,6 +155,8 @@ val preparePrefab by | ||
"glog", Pair(File(buildDir, "third-party-ndk/glog/exported/").absolutePath, "")), | ||
PrefabPreprocessingEntry( | ||
"fabricjni", Pair("src/main/jni/react/fabric", "react/fabric/")), | ||
+ PrefabPreprocessingEntry( | ||
+ "mapbufferjni", Pair("src/main/jni/react/mapbuffer", "react/mapbuffer/")), | ||
PrefabPreprocessingEntry( | ||
"react_render_mapbuffer", | ||
Pair("../ReactCommon/react/renderer/mapbuffer/", "react/renderer/mapbuffer/")), | ||
@@ -574,6 +576,7 @@ android { | ||
"jsi", | ||
"glog", | ||
"fabricjni", | ||
+ "mapbufferjni", | ||
"react_render_mapbuffer", | ||
"react_render_textlayoutmanager", | ||
"yoga", | ||
@@ -703,6 +706,7 @@ android { | ||
create("jsi") { headers = File(prefabHeadersDir, "jsi").absolutePath } | ||
create("glog") { headers = File(prefabHeadersDir, "glog").absolutePath } | ||
create("fabricjni") { headers = File(prefabHeadersDir, "fabricjni").absolutePath } | ||
+ create("mapbufferjni") { headers = File(prefabHeadersDir, "mapbufferjni").absolutePath } | ||
create("react_render_mapbuffer") { | ||
headers = File(prefabHeadersDir, "react_render_mapbuffer").absolutePath | ||
} | ||
diff --git a/ReactAndroid/cmake-utils/ReactNative-application.cmake b/ReactAndroid/cmake-utils/ReactNative-application.cmake | ||
index e2efc266ca0f68dd2226ec027491f193e6153ec9..3d4e1517a757dec5298a3af3471b9a4cffdbd04e 100644 | ||
--- a/ReactAndroid/cmake-utils/ReactNative-application.cmake | ||
+++ b/ReactAndroid/cmake-utils/ReactNative-application.cmake | ||
@@ -79,6 +79,7 @@ add_library(rrc_textinput ALIAS ReactAndroid::rrc_textinput) | ||
add_library(jsi ALIAS ReactAndroid::jsi) | ||
add_library(glog ALIAS ReactAndroid::glog) | ||
add_library(fabricjni ALIAS ReactAndroid::fabricjni) | ||
+add_library(mapbufferjni ALIAS ReactAndroid::mapbufferjni) | ||
add_library(react_render_mapbuffer ALIAS ReactAndroid::react_render_mapbuffer) | ||
add_library(react_render_textlayoutmanager ALIAS ReactAndroid::react_render_textlayoutmanager) | ||
add_library(yoga ALIAS ReactAndroid::yoga) | ||
@@ -93,6 +94,7 @@ add_library(fbjni ALIAS fbjni::fbjni) | ||
|
||
target_link_libraries(${CMAKE_PROJECT_NAME} | ||
fabricjni # prefab ready | ||
+ mapbufferjni # prefab ready | ||
fbjni # via 3rd party prefab | ||
folly_runtime # prefab ready | ||
glog # prefab ready |
426 changes: 213 additions & 213 deletions
426
.yarn/releases/yarn-3.6.1.cjs → .yarn/releases/yarn-3.6.4.cjs
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
android/src/main/java/com/expensify/livemarkdown/LiveMarkdownModule.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 1 addition & 6 deletions
7
android/src/main/java/com/expensify/livemarkdown/MarkdownUtils.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.