-
Notifications
You must be signed in to change notification settings - Fork 4
/
LocalServer.podspec
30 lines (26 loc) · 1.1 KB
/
LocalServer.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
Pod::Spec.new do |s|
s.name = "LocalServer"
s.version = "2.1.3"
s.summary = "Micro Feature"
s.description = <<-DESC
LocalServer is resposible for ...
DESC
s.homepage = "https://github.com/db-in/LocalServer.git"
s.documentation_url = "https://db-in.github.io/LocalServer/"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = 'Diney Bomfim'
s.source = { :git => "https://github.com/db-in/LocalServer.git", :tag => s.version, :submodules => true }
s.swift_version = '5.0'
s.requires_arc = true
s.ios.deployment_target = '15.0'
s.osx.deployment_target = '12.0'
s.tvos.deployment_target = '15.0'
s.watchos.deployment_target = '9.0'
s.user_target_xcconfig = { 'GENERATE_INFOPLIST_FILE' => 'YES', 'MARKETING_VERSION' => "#{s.version}" }
s.pod_target_xcconfig = { 'GENERATE_INFOPLIST_FILE' => 'YES', 'MARKETING_VERSION' => "#{s.version}" }
s.public_header_files = 'LocalServer/**/*.h'
s.source_files = 'LocalServer/**/*.{h,m,swift}'
s.exclude_files = 'LocalServer/**/Info.plist'
s.frameworks = 'Foundation'
s.ios.frameworks = 'WebKit'
end