-
Notifications
You must be signed in to change notification settings - Fork 2
/
CardinalKit.podspec
executable file
·49 lines (37 loc) · 1.63 KB
/
CardinalKit.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
#
# Be sure to run `pod lib lint CardinalKit.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'SafeSip'
s.version = '1.1.0'
s.summary = 'https://cardinalkit.org/'
s.description = 'CardinalKit empowers the digital health community to rapidly prototype and build modern, interoperable, scalable digital health solutions on a variety of platforms.'
s.homepage = 'https://github.com/CardinalKit/CardinalKit'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'CardinalKit' => 'https://cardinalkit.org/' }
s.source = { :git => 'https://github.com/CardinalKit/CardinalKit.git', :tag => s.version.to_s }
s.ios.deployment_target = '15.0'
s.source_files = 'CardinalKit/Source/**/*'
s.resource_bundles = {
'CardinalKit' => ['CardinalKit/Assets/*.png', 'CardinalKit/Assets/*.pdf']
}
s.frameworks = 'UIKit', 'Foundation'
s.dependency 'Granola'
#Local Storage
s.dependency 'RealmSwift', '~> 10'
#Networking and responses
s.dependency 'ObjectMapper', '~> 3'
s.dependency 'ReachabilitySwift', '~> 3'
#Compressing files
s.dependency 'Zip', '~> 2.1.2'
s.dependency 'Firebase/Firestore', '~> 10'
s.dependency 'Firebase/Auth', '~> 10'
s.dependency 'Firebase/Storage', '~> 10'
s.dependency 'Firebase/Analytics', '~> 10'
s.static_framework = true
s.public_header_files = 'CardinalKit/Source/Components/Header.h'
end