forked from KoCMoHaBTa/MHIdentityKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EldersIdentityKit.podspec
25 lines (20 loc) · 1.15 KB
/
EldersIdentityKit.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
Pod::Spec.new do |s|
s.name = "EldersIdentityKit"
s.version = "1.14.0"
s.source = { :git => "https://github.com/Elders/#{s.name}.git", :tag => "#{s.version}" }
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = "Milen Halachev"
s.summary = "OAuth2 and OpenID connect iOS Protocol Oriented Swift client library."
s.homepage = "https://github.com/KoCMoHaBTa/#{s.name}"
s.swift_version = "6.0"
s.ios.deployment_target = "13.0"
s.osx.deployment_target = "10.15"
s.watchos.deployment_target = "6.0"
s.tvos.deployment_target = "13.0"
s.source_files = "#{s.name}/**/*.swift", "#{s.name}/**/*.{h,m}"
s.public_header_files = "#{s.name}/**/*.h"
s.ios.exclude_files = "#{s.name}/**/macOS/*.swift", "#{s.name}/**/tvOS/*.swift", "#{s.name}/**/watchOS/*.swift"
s.osx.exclude_files = "#{s.name}/**/iOS/*.swift", "#{s.name}/**/tvOS/*.swift", "#{s.name}/**/watchOS/*.swift"
s.tvos.exclude_files = "#{s.name}/**/iOS/*.swift", "#{s.name}/**/macOS/*.swift", "#{s.name}/**/watchOS/*.swift"
s.watchos.exclude_files = "#{s.name}/**/iOS/*.swift", "#{s.name}/**/macOS/*.swift", "#{s.name}/**/tvOS/*.swift"
end