diff --git a/CHANGELOG.md b/CHANGELOG.md index d006219..9e47122 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +- fixed: Stop depending on the iOS-provided SQLite, which causes crashes on iOS 13-15 because it is too old. + ## 0.7.0 (2024-04-22) - added: Support Orchard pool diff --git a/README.md b/README.md index a7509d2..1e63c65 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,7 @@ pod 'CNIODarwin', :modular_headers => true pod 'CNIOHTTPParser', :modular_headers => true pod 'CNIOLinux', :modular_headers => true pod 'CNIOWindows', :modular_headers => true +pod 'sqlite3', :modular_headers => true ``` On the Android side, you may need to configure an explicit Kotlin version, so all your native dependencies will be compatible with one another. Simply define `kotlinVersion` in your `android/build.gradle` file: diff --git a/react-native-zcash.podspec b/react-native-zcash.podspec index 1845329..ebe324f 100644 --- a/react-native-zcash.podspec +++ b/react-native-zcash.podspec @@ -28,6 +28,6 @@ Pod::Spec.new do |s| s.dependency "MnemonicSwift", "~> 2.2" s.dependency "gRPC-Swift", "~> 1.8" - s.dependency "SQLite.swift", "~> 0.12" + s.dependency "SQLite.swift/standalone", "~> 0.14" s.dependency "React-Core" end