-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSwiftMatrixSDK.podspec
35 lines (23 loc) · 1.22 KB
/
SwiftMatrixSDK.podspec
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
Pod::Spec.new do |s|
s.name = "SwiftMatrixSDK"
s.version = "0.10.12"
s.summary = "The iOS SDK to build apps compatible with Matrix (https://www.matrix.org)"
s.description = <<-DESC
Matrix is a new open standard for interoperable Instant Messaging and VoIP, providing pragmatic HTTP APIs and open source reference implementations for creating and running your own real-time communication infrastructure.
Our hope is to make VoIP/IM as universal and interoperable as email.
DESC
s.homepage = "https://www.matrix.org"
s.license = { :type => "Apache License, Version 2.0", :file => "LICENSE" }
s.author = { "matrix.org" => "[email protected]" }
s.social_media_url = "http://twitter.com/matrixdotorg"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.source = { :git => "https://github.com/matrix-org/matrix-ios-sdk.git", :tag => "v0.10.12" }
s.source_files = "MatrixSDK", "MatrixSDK/**/*.{h,m,swift}"
s.requires_arc = true
s.dependency 'AFNetworking', '~> 3.2.0'
s.dependency 'GZIP', '~> 1.2.1'
# Requirements for e2e encryption
s.dependency 'OLMKit', '~> 2.2.2'
s.dependency 'Realm', '~> 3.6.0'
end