GoogleSignInSwift.podspec 867 B

123456789101112131415161718192021222324252627
  1. Pod::Spec.new do |s|
  2. s.name = 'GoogleSignInSwift'
  3. s.version = '6.2.0'
  4. s.swift_version = '4.0'
  5. s.summary = 'Adds Swift-focused support for Google Sign-In.'
  6. s.description = 'Additional Swift support for the Google Sign-In SDK.'
  7. s.homepage = 'https://developers.google.com/identity/sign-in/ios/'
  8. s.license = { :type => 'Apache', :file => 'LICENSE' }
  9. s.authors = 'Google LLC'
  10. s.source = {
  11. :git => 'https://github.com/google/GoogleSignIn-iOS.git',
  12. :tag => s.version.to_s
  13. }
  14. ios_deployment_target = '13.0'
  15. macos_deployment_target = '10.15'
  16. s.ios.deployment_target = ios_deployment_target
  17. s.osx.deployment_target = macos_deployment_target
  18. s.prefix_header_file = false
  19. s.source_files = [
  20. 'GoogleSignInSwift/Sources/*.swift',
  21. ]
  22. s.frameworks = [
  23. 'CoreGraphics',
  24. 'SwiftUI',
  25. ]
  26. s.dependency 'GoogleSignIn', '~> 6.2'
  27. end