Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2841,7 +2841,7 @@ SPEC CHECKSUMS:
NitroMmkv: afbc5b2fbf963be567c6c545aa1efcf6a9cec68e
NitroModules: 11bba9d065af151eae51e38a6425e04c3b223ff3
OpenSSL-Universal: 9110d21982bb7e8b22a962b6db56a8aa805afde7
QuickCrypto: b6fed48151d7fef2b33e8420c660dde2b421c396
QuickCrypto: 5294516c651e33d452090e344da1ea839c4986f1
RCT-Folly: 846fda9475e61ec7bcbf8a3fe81edfcaeb090669
RCTDeprecation: c4b9e2fd0ab200e3af72b013ed6113187c607077
RCTRequired: e97dd5dafc1db8094e63bc5031e0371f092ae92a
Expand Down
4 changes: 2 additions & 2 deletions packages/react-native-quick-crypto/QuickCrypto.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Pod::Spec.new do |s|
# Ensure libsodium source is present during podspec evaluation when enabled.
# This is necessary because prepare_command is skipped for :path pods.
if sodium_enabled
sodium_version = "1.0.20"
sodium_version = "1.0.22"
sodium_dir = File.join(__dir__, "ios", "libsodium-stable")
sodium_header = File.join(sodium_dir, "src", "libsodium", "include", "sodium.h")
unless File.exist?(sodium_header)
Expand All @@ -52,7 +52,7 @@ Pod::Spec.new do |s|
rm -f OpenSSL.xcframework.zip
# Build libsodium
mkdir -p ios
curl -L -o ios/libsodium.tar.gz https://download.libsodium.org/libsodium/releases/libsodium-1.0.20-stable.tar.gz
curl -L -o ios/libsodium.tar.gz https://download.libsodium.org/libsodium/releases/libsodium-1.0.22-stable.tar.gz
tar -xzf ios/libsodium.tar.gz -C ios
cd ios/libsodium-stable
./configure --disable-shared --enable-static
Expand Down
4 changes: 2 additions & 2 deletions packages/react-native-quick-crypto/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -150,11 +150,11 @@ dependencies {
implementation project(":react-native-nitro-modules")

// Add a dependency on OpenSSL
implementation 'io.github.ronickg:openssl:3.6.0-1'
implementation 'io.github.ronickg:openssl:3.6.2-1'

if (sodiumEnabled) {
// Add a dependency on libsodium
implementation 'io.github.ronickg:sodium:1.0.20-1'
implementation 'io.github.ronickg:sodium:1.0.22-1'
}
}

Expand Down
Loading