-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathStytch.podspec
36 lines (32 loc) · 1.06 KB
/
Stytch.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
Pod::Spec.new do |s|
s.name = 'Stytch'
s.version = `Scripts/version show-current`.strip
s.summary = "A Swift SDK for using Stytch's user-authentication products on Apple platforms."
s.homepage = 'https://github.com/stytchauth/stytch-ios'
s.license = {
:type => 'MIT',
:file => 'LICENSE'
}
s.authors = {
'Dan Loman' => '[email protected]'
}
s.source = {
:git => 'https://github.com/stytchauth/stytch-ios.git',
:tag => s.version.to_s
}
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
s.tvos.deployment_target = '13.0'
s.swift_version = '5.5'
s.documentation_url = "https://stytchauth.github.io/stytch-ios/documentation/stytchcore/"
s.default_subspec = 'StytchCore'
s.static_framework = true
s.subspec 'StytchCore' do |s|
s.source_files = 'Sources/StytchCore/**/*'
s.exclude_files = "**/Documentation*/**/*"
s.dependency "RecaptchaEnterprise", "~> 18.3.0"
s.resource_bundles = {
'StytchCore' => ['Sources/StytchCore/**/*.{html}']
}
end
end