-
Notifications
You must be signed in to change notification settings - Fork 17
/
Podfile
48 lines (33 loc) · 872 Bytes
/
Podfile
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
use_frameworks!
abstract_target 'LibSignalProtocolSwift' do
# Pods for LibSignalProtocolSwift
# Protocol Buffers in Swift
pod 'SwiftProtobuf', '~> 1.5.0'
# Elliptic Curve functions
pod 'Curve25519', '~> 1.1'
# Cryptographic functions powered by CommonCrypto
pod 'CommonCryptoModule', '~> 1.0.2'
# iOS
target 'SignalProtocol iOS' do
platform :ios, '9.0'
target 'SignalProtocol Tests' do
inherit! :search_paths
# Pods for testing
end
end
# macOS
target 'SignalProtocol macOS' do
platform :osx, '10.9'
# Pods for LibSignalProtocolSwift macOS
end
# tvOS
target 'SignalProtocol tvOS' do
platform :tvos, '9.0'
# Pods for LibSignalProtocolSwift tvOS
end
# watchOS
target 'SignalProtocol watchOS' do
platform :watchos, '4.0'
# Pods for LibSignalProtocolSwift watchOS
end
end