-
Notifications
You must be signed in to change notification settings - Fork 24
/
XMTP.podspec
29 lines (21 loc) · 954 Bytes
/
XMTP.podspec
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
Pod::Spec.new do |spec|
spec.name = "XMTP"
spec.version = "3.0.10"
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.3'
spec.source = { :git => "https://github.com/xmtp/xmtp-ios.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/**/*.swift"
spec.frameworks = "CryptoKit", "UIKit"
spec.dependency 'CSecp256k1', '~> 0.2'
spec.dependency "Connect-Swift", "= 1.0.0"
spec.dependency 'LibXMTP', '= 3.0.7'
spec.dependency 'CryptoSwift', '= 1.8.3'
spec.ios.deployment_target = '14.0'
end