| 12345678910111213141516171819202122232425262728293031323334353637 |
- Pod::Spec.new do |s|
- s.name = 'GoogleSignInSwiftSupport'
- s.version = '7.0.0'
- s.swift_version = '4.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',
- ]
- end
- end
|