Skip to content
Open
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 ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2977,7 +2977,7 @@ SPEC CHECKSUMS:
MendixNative: 358ef00fc883a39da69680c6c2a09ecf85a0b887
MultiplatformBleAdapter: 5a6a897b006764392f9cef785e4360f54fb9477d
nanopb: 438bc412db1928dac798aa6fd75726007be04262
op-sqlite: 12554de3e1a0cb86cbad3cf1f0c50450f57d3855
op-sqlite: 870c9b6b9ef342a12dc89b841c38ad451d1a885c
OpenSSL-Universal: 6082b0bf950e5636fe0d78def171184e2b3899c2
PromisesObjC: f5707f49cb48b9636751c5b2e7d227e43fba9f47
PromisesSwift: 9d77319bbe72ebf6d872900551f7eeba9bce2851
Expand Down
13 changes: 11 additions & 2 deletions patches/@op-engineering+op-sqlite+15.0.7.patch
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ index d36fd85..7513556 100644
println "[OP-SQLITE] using sqlcipher."
} else if(useLibsql) {
diff --git a/node_modules/@op-engineering/op-sqlite/android/cpp-adapter.cpp b/node_modules/@op-engineering/op-sqlite/android/cpp-adapter.cpp
index 8feaf77..261ec22 100644
index 8feaf77..2393963 100644
--- a/node_modules/@op-engineering/op-sqlite/android/cpp-adapter.cpp
+++ b/node_modules/@op-engineering/op-sqlite/android/cpp-adapter.cpp
@@ -19,8 +19,8 @@ struct OPSQLiteBridge : jni::JavaClass<OPSQLiteBridge> {
Expand Down Expand Up @@ -206,7 +206,7 @@ index 91511ab..cc73dfe 100644

} // namespace opsqlite
diff --git a/node_modules/@op-engineering/op-sqlite/op-sqlite.podspec b/node_modules/@op-engineering/op-sqlite/op-sqlite.podspec
index 375cc3e..e6fce21 100644
index 375cc3e..e259537 100644
--- a/node_modules/@op-engineering/op-sqlite/op-sqlite.podspec
+++ b/node_modules/@op-engineering/op-sqlite/op-sqlite.podspec
@@ -1,4 +1,3 @@
Expand Down Expand Up @@ -266,3 +266,12 @@ index 375cc3e..e6fce21 100644
Pod::Spec.new do |s|
s.name = "op-sqlite"
s.version = package["version"]
@@ -97,6 +64,8 @@ Pod::Spec.new do |s|

# Base source files
source_files = Dir.glob("ios/**/*.{h,m,mm}") + Dir.glob("cpp/**/*.{h,cpp,c}")
+ # Avoid pulling headers from vendored xcframeworks into the pod target
+ source_files = source_files.reject { |path| path.include?(".xcframework/") }

# Set the path to the `c_sources` directory based on environment
if is_user_app