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

Try to add sql cipher directly #440

Merged
merged 2 commits into from
Nov 26, 2024
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
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
Loading