forked from matrix-org/matrix-ios-kit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Podfile
33 lines (22 loc) · 955 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
# Uncomment this line to define a global platform for your project
# platform :ios, "6.0"
source 'https://github.com/CocoaPods/Specs.git'
target "MatrixKitSample" do
# Different flavours of pods to Matrix SDK
# The tagged version on which this version of MatrixKit has been built
pod 'MatrixSDK', '0.7.11'
# 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.2'
pod 'HPGrowingTextView', '~> 1.1'
pod 'JSQMessagesViewController', '~> 7.2.0'
pod 'DTCoreText', '~> 1.6.17'
pod 'cmark', '~> 0.24.1'
end
target "MatrixKitTests" do
end