FirebaseAuth.podspec 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. # This podspec is not intended to be deployed. It is solely for the static
  2. # library framework build process at
  3. # https://github.com/firebase/firebase-ios-sdk/tree/master/BuildFrameworks
  4. Pod::Spec.new do |s|
  5. s.name = 'FirebaseAuth'
  6. s.version = '4.3.2'
  7. s.summary = 'Firebase Open Source Libraries for iOS.'
  8. s.description = <<-DESC
  9. Simplify your iOS development, grow your user base, and monetize more effectively with Firebase.
  10. DESC
  11. s.homepage = 'https://firebase.google.com'
  12. s.license = { :type => 'Apache', :file => '../../LICENSE' }
  13. s.authors = 'Google, Inc.'
  14. # NOTE that the FirebaseCommunity pod is neither publicly deployed nor yet interchangeable with the
  15. # Firebase pod
  16. s.source = { :git => 'https://github.com/firebase/firebase-ios-sdk.git', :tag => s.version.to_s }
  17. s.social_media_url = 'https://twitter.com/Firebase'
  18. s.ios.deployment_target = '7.0'
  19. s.osx.deployment_target = '10.10'
  20. s.source_files = '**/*.[mh]'
  21. s.osx.exclude_files =
  22. 'Source/**/FIRAuthAppDelegateProxy.[mh]',
  23. 'Source/**/FIRAuthNotificationManager.[mh]',
  24. 'Source/**/FIRAuthAppCredentialManager.[mh]',
  25. 'Source/**/FIRAuthAPNSTokenManager.[mh]',
  26. 'Source/**/FIRAuthAPNSTokenType.[mh]',
  27. 'Source/**/FIRAuthAPNSToken.[mh]',
  28. 'Source/**/FIRAuthDefaultUIDelegate.[mh]',
  29. 'Source/**/FIRAuthUIDelegate.h',
  30. 'Source/**/FIRAuthURLPresenter.[mh]',
  31. 'Source/**/FIRAuthWebView.[mh]',
  32. 'Source/**/FIRAuthWebViewController.[mh]',
  33. 'Source/**/FIRPhoneAuthCredential.[mh]',
  34. 'Source/**/FIRPhoneAuthProvider.[mh]'
  35. s.public_header_files = 'Source/Public/*.h'
  36. s.preserve_paths =
  37. 'README.md',
  38. 'CHANGELOG.md'
  39. s.xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' =>
  40. '$(inherited) ' + 'FIRAuth_VERSION=' + s.version.to_s +
  41. ' FIRAuth_MINOR_VERSION=' + s.version.to_s.split(".")[0] + "." + s.version.to_s.split(".")[1]
  42. }
  43. s.framework = 'SafariServices'
  44. s.framework = 'Security'
  45. # s.dependency 'FirebaseCommunity/Core'
  46. s.dependency 'GTMSessionFetcher/Core', '~> 1.1'
  47. s.dependency 'GoogleToolboxForMac/NSDictionary+URLArguments', '~> 2.1'
  48. end