forked from matrix-org/matrix-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SwiftMatrixSDK.podspec
36 lines (24 loc) · 1.26 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
36
Pod::Spec.new do |s|
s.name = "SwiftMatrixSDK"
s.version = "0.12.4"
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 => "v#{s.version}" }
s.source_files = "MatrixSDK", "MatrixSDK/**/*.{h,m,swift}"
s.requires_arc = true
s.dependency 'AFNetworking', '~> 3.2.0'
s.dependency 'GZIP', '~> 1.2.2'
# Requirements for e2e encryption
s.dependency 'OLMKit', '~> 3.0.0'
s.dependency 'Realm', '~> 3.13.1'
s.dependency 'libbase58', '~> 0.1.4'
end