Skip to content

Commit

Permalink
Merge branch 'build/new_splash_screen' into tmp/20241231
Browse files Browse the repository at this point in the history
  • Loading branch information
richardo2016x committed Dec 26, 2024
2 parents 3e625a5 + 0b4ea26 commit 09aee17
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 3 deletions.
14 changes: 14 additions & 0 deletions .yarn/patches/react-native-v8-npm-2.5.1-215a8641f3.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
diff --git a/src/v8runtime/JSIV8ValueConverter.cpp b/src/v8runtime/JSIV8ValueConverter.cpp
index df5594068195f6c8fdfeab27800e5df629aee73e..158ac9264f09f7443f0f7ad12d851de7aac4f5c4 100644
--- a/src/v8runtime/JSIV8ValueConverter.cpp
+++ b/src/v8runtime/JSIV8ValueConverter.cpp
@@ -66,6 +66,9 @@ v8::Local<v8::Value> JSIV8ValueConverter::ToV8Value(
} else if (value.isObject()) {
return scopedHandle.Escape(ToV8Object(
runtime, std::move(value.getObject(const_cast<V8Runtime &>(runtime)))));
+ } else if (value.isSymbol()) {
+ return scopedHandle.Escape(ToV8Symbol(
+ runtime, std::move(value.getSymbol(const_cast<V8Runtime &>(runtime)))));
} else {
// What are you?
std::abort();
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@
"[email protected]": "patch:zeego@npm%3A1.10.0#./.yarn/patches/zeego-npm-1.10.0-1958a3ea63.patch",
"@rabby-wallet/[email protected]": "patch:@rabby-wallet/eth-hd-keyring@npm%3A4.3.1#./.yarn/patches/@rabby-wallet-eth-hd-keyring-npm-4.3.1-a1d8bbe289.patch",
"react-native-quick-crypto@^0.7.7": "patch:react-native-quick-crypto@npm%3A0.7.10#./.yarn/patches/react-native-quick-crypto-npm-0.7.10-e50ff7fecf.patch",
"[email protected]": "patch:react-native-quick-crypto@npm%3A0.7.10#./.yarn/patches/react-native-quick-crypto-npm-0.7.10-e50ff7fecf.patch"
"[email protected]": "patch:react-native-quick-crypto@npm%3A0.7.10#./.yarn/patches/react-native-quick-crypto-npm-0.7.10-e50ff7fecf.patch",
"react-native-v8@^2.5.1": "patch:react-native-v8@npm%3A2.5.1#./.yarn/patches/react-native-v8-npm-2.5.1-215a8641f3.patch"
},
"dependencies": {
"@babel/runtime": "^7.20.0",
Expand Down
18 changes: 16 additions & 2 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -28569,7 +28569,7 @@ __metadata:

"react-native-reanimated@npm:^3.6.1":
version: 3.6.1
resolution: "react-native-reanimated@npm:3.6.1::__archiveUrl=https%3A%2F%2Fregistry.npmjs.org%2Freact-native-reanimated%2F-%2Freact-native-reanimated-3.6.1.tgz"
resolution: "react-native-reanimated@npm:3.6.1"
dependencies:
"@babel/plugin-transform-object-assign": ^7.16.7
"@babel/preset-typescript": ^7.16.7
Expand Down Expand Up @@ -28724,7 +28724,7 @@ __metadata:
languageName: node
linkType: hard

"react-native-v8@npm:^2.5.1":
"react-native-v8@npm:2.5.1":
version: 2.5.1
resolution: "react-native-v8@npm:2.5.1"
dependencies:
Expand All @@ -28738,6 +28738,20 @@ __metadata:
languageName: node
linkType: hard

"react-native-v8@patch:react-native-v8@npm%3A2.5.1#./.yarn/patches/react-native-v8-npm-2.5.1-215a8641f3.patch::locator=%40rabby-wallet%2Fmobile-monorepo%40workspace%3A.":
version: 2.5.1
resolution: "react-native-v8@patch:react-native-v8@npm%3A2.5.1#./.yarn/patches/react-native-v8-npm-2.5.1-215a8641f3.patch::version=2.5.1&hash=4ea2bf&locator=%40rabby-wallet%2Fmobile-monorepo%40workspace%3A."
dependencies:
semver: ^7.6.2
peerDependencies:
expo: "*"
peerDependenciesMeta:
expo:
optional: true
checksum: e0cb42392aa6bc0868547c48cea7eb7b9264428f474610c87069436ac81d81fbaeb826949d28c52e93ab689f4e4031dacb730a9f37b52f629728730900a77fb7
languageName: node
linkType: hard

"react-native-vector-icons@npm:^10.0.2":
version: 10.0.3
resolution: "react-native-vector-icons@npm:10.0.3::__archiveUrl=https%3A%2F%2Fregistry.npmjs.org%2Freact-native-vector-icons%2F-%2Freact-native-vector-icons-10.0.3.tgz"
Expand Down

0 comments on commit 09aee17

Please sign in to comment.