-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
28 lines (24 loc) · 1.09 KB
/
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
platform :watchos, '10.0'
use_frameworks!
inhibit_all_warnings!
install! 'cocoapods', :warn_for_unused_master_specs_repo => false
target 'session-ui' do
pod 'Reachability', :path => './Reachability'
pod 'DSF_QRCode', '~> 18.0.0'
pod 'CryptoSwift', '~> 1.8.1'
# FIXME: If https://github.com/jedisct1/swift-sodium/pull/249 gets resolved then revert this back
# pod 'Sodium', :git => 'https://github.com/oxen-io/session-ios-swift-sodium.git', branch: 'session-build'
pod 'Sodium', :git => 'https://github.com/oxen-io/session-ios-swift-sodium.git', commit: '310c343'
pod 'SignalCoreKit', :path => './session-ios-core-kit-session-version'
pod 'SwiftProtobuf', '~> 1.5.0'
pod 'OpenSSL-Universal', :path => './openssl-universal-patch'
pod 'AnyCodable-FlightSchool', '~> 0.6.0'
end
def set_minimum_deployment_target(installer)
installer.pods_project.targets.each do |target|
target.build_configurations.each do |build_configuration|
build_configuration.build_settings['WATCHOS_DEPLOYMENT_TARGET'] = '10.0'
build_configuration.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'
end
end
end