forked from matrix-org/matrix-ios-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
40 lines (26 loc) · 1.18 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
# Uncomment this line to define a global platform for your project
platform :ios, '12.1'
# Use frameforks to allow usage of pod written in Swift (like PiwikTracker)
use_frameworks!
abstract_target 'MatrixKitSamplePods' do
# Different flavours of pods to Matrix SDK
# The tagged version on which this version of MatrixKit has been built
pod 'MatrixSDK', '= 0.20.13'
# The lastest release available on the CocoaPods repository
#pod 'MatrixSDK'
# The develop branch version
#pod 'MatrixSDK', :git => 'https://github.com/matrix-org/matrix-ios-sdk.git', :branch => 'develop'
# The one used for developping both MatrixSDK and MatrixKit
# Note that MatrixSDK must be cloned into a folder called matrix-ios-sdk next to the MatrixKit folder
#pod 'MatrixSDK', :path => '../matrix-ios-sdk/MatrixSDK.podspec'
pod 'libPhoneNumber-iOS', '~> 0.9.13'
pod 'HPGrowingTextView', '~> 1.1'
pod 'JSQMessagesViewController', '~> 7.3.5'
pod 'DTCoreText', '~> 1.6.25'
pod 'Down', '~> 0.11.0'
target "MatrixKitSample" do
pod 'SwiftGen', '~> 6.3'
end
target "MatrixKitTests" do
end
end