| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- Pod::Spec.new do |s|
- s.name = 'GoogleSignIn'
- s.version = '6.2.0'
- s.summary = 'Enables iOS apps to sign in with Google.'
- s.description = <<-DESC
- The Google Sign-In SDK allows users to sign in with their Google account from third-party apps.
- DESC
- 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 = '9.0'
- osx_deployment_target = '10.15'
- s.ios.deployment_target = ios_deployment_target
- s.osx.deployment_target = osx_deployment_target
- s.prefix_header_file = false
- s.source_files = [
- 'GoogleSignIn/Sources/**/*.[mh]',
- ]
- s.public_header_files = [
- 'GoogleSignIn/Sources/Public/GoogleSignIn/*.h',
- ]
- s.frameworks = [
- 'CoreGraphics',
- 'CoreText',
- 'Foundation',
- 'LocalAuthentication',
- 'Security'
- ]
- s.ios.framework = 'UIKit'
- s.osx.framework = 'AppKit'
- s.dependency 'AppAuth', '~> 1.5'
- s.dependency 'GTMAppAuth', '~> 1.0'
- s.dependency 'GTMSessionFetcher/Core', '~> 1.1'
- s.resource_bundle = {
- 'GoogleSignIn' => ['GoogleSignIn/Sources/{Resources,Strings}/*']
- }
- s.pod_target_xcconfig = {
- 'GCC_PREPROCESSOR_DEFINITIONS' => 'GID_SDK_VERSION=' + s.version.to_s,
- 'HEADER_SEARCH_PATHS' => '"${PODS_TARGET_SRCROOT}"',
- 'DEFINES_MODULE' => 'YES'
- }
- s.test_spec 'unit' do |unit_tests|
- unit_tests.platforms = {
- :ios => ios_deployment_target,
- :osx => osx_deployment_target
- }
- unit_tests.source_files = [
- 'GoogleSignIn/Tests/Unit/**/*.[mh]',
- ]
- unit_tests.requires_app_host = true
- unit_tests.dependency 'OCMock'
- unit_tests.dependency 'GoogleUtilities/MethodSwizzler', '~> 7.2'
- unit_tests.dependency 'GoogleUtilities/SwizzlerTestHelpers', '~> 7.2'
- end
- end
|