Skip to content

Commit

Permalink
try to add sql cipher directyl (#440)
Browse files Browse the repository at this point in the history
  • Loading branch information
nplasterer authored Nov 26, 2024
1 parent b2722a2 commit 635b1ab
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ let package = Package(
.package(url: "https://github.com/bufbuild/connect-swift", exact: "1.0.0"),
.package(url: "https://github.com/apple/swift-docc-plugin.git", from: "1.4.3"),
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", exact: "1.8.3"),
.package(url: "https://github.com/sqlcipher/sqlcipher", exact: "4.5.7"),
.package(url: "https://github.com/xmtp/libxmtp-swift.git", exact: "3.0.7")
],
targets: [
Expand All @@ -30,7 +31,8 @@ let package = Package(
.product(name: "CSecp256k1", package: "CSecp256k1.swift"),
.product(name: "Connect", package: "connect-swift"),
.product(name: "LibXMTP", package: "libxmtp-swift"),
.product(name: "CryptoSwift", package: "CryptoSwift")
.product(name: "CryptoSwift", package: "CryptoSwift"),
.product(name: "SQLCipher", package: "sqlcipher")
]
),
.target(
Expand Down
3 changes: 2 additions & 1 deletion XMTP.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "XMTP"
spec.version = "3.0.10"
spec.version = "3.0.11"
spec.summary = "XMTP SDK Cocoapod"

spec.description = <<-DESC
Expand All @@ -24,6 +24,7 @@ Pod::Spec.new do |spec|
spec.dependency "Connect-Swift", "= 1.0.0"
spec.dependency 'LibXMTP', '= 3.0.7'
spec.dependency 'CryptoSwift', '= 1.8.3'
spec.dependency 'SQLCipher', '= 4.5.7'

spec.ios.deployment_target = '14.0'
end

0 comments on commit 635b1ab

Please sign in to comment.