forked from matrix-org/matrix-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
46 lines (35 loc) · 1.17 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Uncomment this line to define a global platform for your project
# Expose Objective-C frameworks to Swift
# Build and link dependencies as static frameworks
use_frameworks! :linkage => :static
abstract_target 'MatrixSDK' do
pod 'AFNetworking', '~> 4.0.0'
pod 'GZIP', '~> 1.3.0'
pod 'SwiftyBeaver', '1.9.5'
pod 'OLMKit', '~> 3.2.5', :inhibit_warnings => true
#pod 'OLMKit', :path => '../olm/OLMKit.podspec'
pod 'Realm', '10.27.0'
pod 'libbase58', '~> 0.1.4'
pod 'MatrixSDKCrypto', "0.3.12", :inhibit_warnings => true
target 'MatrixSDK-iOS' do
platform :ios, '11.0'
target 'MatrixSDKTests-iOS' do
inherit! :search_paths
pod 'OHHTTPStubs', '~> 9.1.0'
end
end
target 'MatrixSDK-macOS' do
platform :osx, '10.10'
target 'MatrixSDKTests-macOS' do
inherit! :search_paths
pod 'OHHTTPStubs', '~> 9.1.0'
end
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
end
end
end