Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: replace the old version with a more maintainable Network Reachability test. #6392

Merged
merged 21 commits into from
Dec 22, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
react-native-netinfo
  • Loading branch information
huhuanming committed Dec 22, 2024
commit fa196be254619764a20d207b19e6c45efc7ffecd
6 changes: 6 additions & 0 deletions apps/mobile/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1006,6 +1006,8 @@ PODS:
- react-native-mmkv (2.10.2):
- MMKV (>= 1.2.13)
- React-Core
- react-native-netinfo (11.4.1):
- React-Core
- react-native-randombytes (3.6.1):
- React-Core
- react-native-restart (0.0.27):
Expand Down Expand Up @@ -1367,6 +1369,7 @@ DEPENDENCIES:
- "react-native-lite-card (from `../../../node_modules/@onekeyfe/react-native-lite-card`)"
- react-native-metrix (from `../../../node_modules/react-native-metrix`)
- react-native-mmkv (from `../../../node_modules/react-native-mmkv`)
- "react-native-netinfo (from `../../../node_modules/@react-native-community/netinfo`)"
- react-native-randombytes (from `../../../node_modules/react-native-randombytes`)
- react-native-restart (from `../../../node_modules/react-native-restart`)
- react-native-safe-area-context (from `../../../node_modules/react-native-safe-area-context`)
Expand Down Expand Up @@ -1573,6 +1576,8 @@ EXTERNAL SOURCES:
:path: "../../../node_modules/react-native-metrix"
react-native-mmkv:
:path: "../../../node_modules/react-native-mmkv"
react-native-netinfo:
:path: "../../../node_modules/@react-native-community/netinfo"
react-native-randombytes:
:path: "../../../node_modules/react-native-randombytes"
react-native-restart:
Expand Down Expand Up @@ -1752,6 +1757,7 @@ SPEC CHECKSUMS:
react-native-lite-card: a7a68f79d02449a4a1eeea52c2cb52d592bbe014
react-native-metrix: dd791bfe9f9acfeb6bdd07da19747136ac977a4d
react-native-mmkv: 9ae7ca3977e8ef48dbf7f066974eb844c20b5fd7
react-native-netinfo: f0a9899081c185db1de5bb2fdc1c88c202a059ac
react-native-randombytes: 421f1c7d48c0af8dbcd471b0324393ebf8fe7846
react-native-restart: 7595693413fe3ca15893702f2c8306c62a708162
react-native-safe-area-context: 7aa8e6d9d0f3100a820efb1a98af68aa747f9284
Expand Down
1 change: 1 addition & 0 deletions apps/mobile/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
"@onekeyhq/kit": "*",
"@onekeyhq/shared": "*",
"@react-native-async-storage/async-storage": "1.22.0",
"@react-native-community/netinfo": "^11.4.1",
"@react-native-community/slider": "4.4.3",
"@react-native-google-signin/google-signin": "^9.1.0",
"@sentry/react-native": "6.4.0",
Expand Down
10 changes: 10 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6983,6 +6983,7 @@ __metadata:
"@onekeyhq/kit": "npm:*"
"@onekeyhq/shared": "npm:*"
"@react-native-async-storage/async-storage": "npm:1.22.0"
"@react-native-community/netinfo": "npm:^11.4.1"
"@react-native-community/slider": "npm:4.4.3"
"@react-native-google-signin/google-signin": "npm:^9.1.0"
"@sentry/react-native": "npm:6.4.0"
Expand Down Expand Up @@ -9829,6 +9830,15 @@ __metadata:
languageName: node
linkType: hard

"@react-native-community/netinfo@npm:^11.4.1":
version: 11.4.1
resolution: "@react-native-community/netinfo@npm:11.4.1"
peerDependencies:
react-native: ">=0.59"
checksum: 10/47f0d61072ca04a545784daaa44a5b1927eb788a3521dce5462184855733485c3b58c52d2a9b790b5c784e806fb342c83bc14e348cc7e55263b63d31e1862f9d
languageName: node
linkType: hard

"@react-native-community/slider@npm:4.4.3":
version: 4.4.3
resolution: "@react-native-community/slider@npm:4.4.3"
Expand Down
Loading