-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMobileCore.podspec
More file actions
44 lines (37 loc) · 1.61 KB
/
MobileCore.podspec
File metadata and controls
44 lines (37 loc) · 1.61 KB
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
Pod::Spec.new do |s|
s.name = 'MobileCore'
s.version = '1.0.0'
s.summary = 'MobileCore framework.'
s.homepage = 'https://github.com/ppraveentr/MobileCore'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'PraveenP' => 'ppraveentr@gmail.com' }
s.source = { :git => 'https://github.com/ppraveentr/MobileCore.git', :tag => s.version.to_s }
s.weak_framework = 'UIKit'
s.ios.deployment_target = '16.0'
s.swift_version = '6.0'
s.default_subspecs = 'CoreUtility', 'NetworkLayer', 'CoreComponents', 'AppTheming', 'MobileTheming'
s.subspec 'CoreUtility' do |utility|
utility.source_files = 'Sources/CoreUtility/**/*.{h,m,swift}'
utility.header_dir = "CoreUtility"
# utility.dependency 'SwiftKeychainWrapper'
end
s.subspec 'NetworkLayer' do |network|
network.source_files = 'Sources/NetworkLayer/**/*.{h,m,swift}'
network.dependency 'MobileCore/CoreUtility'
network.header_dir = "NetworkLayer"
end
s.subspec 'AppTheming' do |theme|
theme.source_files = 'Sources/AppTheming/**/*.{h,m,swift}'
theme.dependency 'MobileCore/CoreUtility'
theme.header_dir = "AppTheming"
end
s.subspec 'CoreComponents' do |coreComponents|
coreComponents.source_files = 'Sources/CoreComponents/**/*.{h,m,swift}'
coreComponents.dependency 'MobileCore/CoreUtility'
coreComponents.header_dir = "CoreComponents"
end
s.subspec 'MobileTheming' do |theme|
theme.source_files = 'Sources/MobileTheming/**/*.{h,m,swift}'
theme.header_dir = "MobileTheming"
end
end