This repository has been archived by the owner on Dec 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 71
/
MatrixKit.podspec
52 lines (37 loc) · 1.8 KB
/
MatrixKit.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
Pod::Spec.new do |s|
s.name = "MatrixKit"
s.version = "0.16.11"
s.summary = "The Matrix reusable UI library for iOS based on MatrixSDK."
s.description = <<-DESC
Matrix Kit provides basic reusable interfaces to ease building of apps compatible with Matrix (https://www.matrix.org).
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.platform = :ios, "12.1"
s.source = { :git => "https://github.com/matrix-org/matrix-ios-kit.git", :tag => "v#{s.version}" }
s.requires_arc = true
s.deprecated = true
s.swift_version = '5.0'
s.dependency 'MatrixSDK', "= 0.20.13"
s.dependency 'HPGrowingTextView', '~> 1.1'
s.dependency 'libPhoneNumber-iOS', '~> 0.9.13'
s.dependency 'DTCoreText', '~> 1.6.25'
s.dependency 'Down', '~> 0.11.0'
s.default_subspec = 'Core'
s.subspec 'Core' do |core|
core.source_files = "MatrixKit", "MatrixKit/**/*.{h,m,swift}", "Libs/**/*.{h,m,swift}"
core.exclude_files = ['MatrixKit/MatrixKit-Bridging-Header.h']
core.private_header_files = ['MatrixKit/Utils/MXKSwiftHeader.h']
core.resources = ["MatrixKit/**/*.{xib}", "MatrixKit/Assets/MatrixKitAssets.bundle"]
core.dependency 'DTCoreText'
end
s.subspec 'AppExtension' do |ext|
ext.source_files = "MatrixKit", "MatrixKit/**/*.{h,m,swift}", "Libs/**/*.{h,m,swift}"
ext.exclude_files = ['MatrixKit/MatrixKit-Bridging-Header.h']
ext.private_header_files = ['MatrixKit/Utils/MXKSwiftHeader.h']
ext.resources = ["MatrixKit/**/*.{xib}", "MatrixKit/Assets/MatrixKitAssets.bundle"]
ext.dependency 'DTCoreText/Extension'
end
end