-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathXMTP.podspec
More file actions
31 lines (22 loc) · 1.09 KB
/
XMTP.podspec
File metadata and controls
31 lines (22 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Pod::Spec.new do |spec|
spec.name = "XMTP"
spec.version = "4.9.0"
spec.summary = "XMTP SDK Cocoapod"
spec.description = <<-DESC
The XMTP cocoapod implements the XMTP protocol for iOS. It handles cryptographic operations and network communication with the XMTP network.
DESC
spec.homepage = "https://github.com/xmtp/xmtp-ios"
spec.license = "MIT"
spec.author = { "XMTP" => "eng@xmtp.com" }
spec.platform = :ios, '14.0', :macos, '11.0'
spec.swift_version = '5.6'
# Release archive contains libxmtp uniffi bindings Sources/** and LibXMTPSwiftFFI.xcframework
spec.source = { :http => "https://github.com/xmtp/xmtp-ios/releases/download/#{spec.version}/XMTP-#{spec.version}.zip", :type => :zip }
spec.source_files = "Sources/**/*.swift"
spec.frameworks = "CryptoKit", "UIKit"
spec.dependency "Connect-Swift", "~> 1.2.0"
spec.dependency 'CryptoSwift', '= 1.8.3'
spec.dependency 'SQLCipher', '= 4.5.7'
spec.vendored_frameworks = 'LibXMTPSwiftFFI.xcframework'
spec.ios.deployment_target = '14.0'
end