forked from google/GoogleSignIn-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GoogleSignInSwiftSupport.podspec
38 lines (38 loc) · 1.16 KB
/
GoogleSignInSwiftSupport.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
Pod::Spec.new do |s|
s.name = 'GoogleSignInSwiftSupport'
s.version = '7.0.1'
s.swift_version = '5.0'
s.summary = 'Adds Swift-focused support for Google Sign-In.'
s.description = 'Additional Swift support for the Google Sign-In SDK.'
s.homepage = 'https://developers.google.com/identity/sign-in/ios/'
s.license = { :type => 'Apache', :file => 'LICENSE' }
s.authors = 'Google LLC'
s.source = {
:git => 'https://github.com/google/GoogleSignIn-iOS.git',
:tag => s.version.to_s
}
ios_deployment_target = '13.0'
macos_deployment_target = '10.15'
s.ios.deployment_target = ios_deployment_target
s.osx.deployment_target = macos_deployment_target
s.module_name = 'GoogleSignInSwift'
s.prefix_header_file = false
s.source_files = [
'GoogleSignInSwift/Sources/*.swift',
]
s.frameworks = [
'CoreGraphics',
'SwiftUI',
]
s.dependency 'GoogleSignIn', '~> 7.0'
s.test_spec 'unit' do |unit_tests|
unit_tests.platforms = {
:ios => ios_deployment_target,
:osx => macos_deployment_target,
}
unit_tests.source_files = [
'GoogleSignInSwift/Tests/Unit/*.swift',
]
unit_tests.requires_app_host = true
end
end