forked from matrix-org/matrix-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
31 lines (23 loc) · 762 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
# Uncomment this line to define a global platform for your project
abstract_target 'MatrixSDK' do
pod 'AFNetworking', '~> 4.0.0'
pod 'GZIP', '~> 1.3.0'
pod 'OLMKit', '~> 3.1.0', :inhibit_warnings => true
#pod 'OLMKit', :path => '../olm/OLMKit.podspec'
pod 'Realm', '10.1.2'
pod 'libbase58', '~> 0.1.4'
target 'MatrixSDK-iOS' do
platform :ios, '9.0'
target 'MatrixSDKTests-iOS' do
inherit! :search_paths
pod 'OHHTTPStubs', '~> 9.0.0'
end
end
target 'MatrixSDK-macOS' do
platform :osx, '10.10'
target 'MatrixSDKTests-macOS' do
inherit! :search_paths
pod 'OHHTTPStubs', '~> 9.0.0'
end
end
end