-
-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
6 changed files
with
54 additions
and
26 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
27 changes: 27 additions & 0 deletions
27
FabricExample/patches/react-native-gesture-handler+2.5.0.patch
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,27 @@ | ||
diff --git a/node_modules/react-native-gesture-handler/android/build.gradle b/node_modules/react-native-gesture-handler/android/build.gradle | ||
index ad5845e..7318b1b 100644 | ||
--- a/node_modules/react-native-gesture-handler/android/build.gradle | ||
+++ b/node_modules/react-native-gesture-handler/android/build.gradle | ||
@@ -59,6 +59,11 @@ def shouldUseCommonInterfaceFromReanimated() { | ||
} | ||
} | ||
|
||
+def reactNativeArchitectures() { | ||
+ def value = project.getProperties().get("reactNativeArchitectures") | ||
+ return value ? value.split(",") : ["armeabi-v7a", "x86", "x86_64", "arm64-v8a"] | ||
+} | ||
+ | ||
repositories { | ||
mavenCentral() | ||
} | ||
@@ -98,6 +103,10 @@ android { | ||
} | ||
} | ||
} | ||
+ | ||
+ ndk { | ||
+ abiFilters (*reactNativeArchitectures()) | ||
+ } | ||
} | ||
|
||
compileOptions { |
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 |
---|---|---|
|
@@ -3635,10 +3635,10 @@ react-native-codegen@^0.69.1: | |
jscodeshift "^0.13.1" | ||
nullthrows "^1.1.1" | ||
|
||
react-native-gesture-handler@^2.6.1: | ||
version "2.6.1" | ||
resolved "https://registry.yarnpkg.com/react-native-gesture-handler/-/react-native-gesture-handler-2.6.1.tgz#66c40c8d720eb4729b301836a40fd34d14ec840f" | ||
integrity sha512-0MXjRgNCrsQJSo3B9oXORw5spdm/9dkDbP2JU/3zrVyV9/MnRz5Oo3oy7hREKYWVMF9Gk2UpsCquFLRFQxeSxQ== | ||
react-native-gesture-handler@2.5.0: | ||
version "2.5.0" | ||
resolved "https://registry.yarnpkg.com/react-native-gesture-handler/-/react-native-gesture-handler-2.5.0.tgz#61385583570ed0a45a9ed142425e35f8fe8274fb" | ||
integrity sha512-djZdcprFf08PZC332D+AeG5wcGeAPhzfCJtB3otUgOgTlvjVXmg/SLFdPJSpzLBqkRAmrC77tM79QgKbuLxkfw== | ||
dependencies: | ||
"@egjs/hammerjs" "^2.0.17" | ||
hoist-non-react-statics "^3.3.0" | ||
|
@@ -3668,12 +3668,12 @@ [email protected]: | |
setimmediate "^1.0.5" | ||
string-hash-64 "^1.0.3" | ||
|
||
react-native-safe-area-context@^4.3.3: | ||
version "4.3.3" | ||
resolved "https://registry.yarnpkg.com/react-native-safe-area-context/-/react-native-safe-area-context-4.3.3.tgz#a0f1e3116ded39efc1b78a46a6d89c71169827e4" | ||
integrity sha512-xwsloGLDUzeTN40TIh4Te/zRePSnBAuWlLIiEW3RYE9gHHYslqQWpfK7N24SdAQEH3tHZ+huoYNjo2GQJO/vnQ== | ||
[email protected].4: | ||
version "4.3.4" | ||
resolved "https://registry.yarnpkg.com/react-native-safe-area-context/-/react-native-safe-area-context-4.3.4.tgz#79060fcc02ef38d6fd7afdf87b2301b06bd99fe9" | ||
integrity sha512-4dFZPDHRigZ+uw8HCmMLyC/IT1BG0B9QLvuwsBQAMDCRSrxISIYza9VIbsIn2FGvZiQ1gOoXBHDmy9WFihQsTg== | ||
|
||
react-native-screens@^3.17.0: | ||
[email protected]: | ||
version "3.17.0" | ||
resolved "https://registry.yarnpkg.com/react-native-screens/-/react-native-screens-3.17.0.tgz#b099b3ec9d46de07c857f14d713c293024c7c842" | ||
integrity sha512-OZCQU7+3neHNaM19jBkYRjL50kXz7p7MUgWQTCcdRoshcCiolf8aXs4eRVQKGK6m1RmoB8UL0//m5R9KoR+41w== | ||
|
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