FirebaseAuth.podspec 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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.0.0'
  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 FirebaseDev 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/**/FIRPhoneAuthProvider.[mh]'
  29. s.public_header_files =
  30. 'Source/FirebaseAuth.h',
  31. 'Source/FirebaseAuthVersion.h',
  32. 'Source/FIRAdditionalUserInfo.h',
  33. 'Source/FIRAuth.h',
  34. 'Source/FIRAuthAPNSTokenType.h',
  35. 'Source/FIRAuthCredential.h',
  36. 'Source/FIRAuthDataResult.h',
  37. 'Source/FIRAuthErrors.h',
  38. 'Source/FIRAuthSwiftNameSupport.h',
  39. 'Source/AuthProviders/EmailPassword/FIREmailAuthProvider.h',
  40. 'Source/AuthProviders/Facebook/FIRFacebookAuthProvider.h',
  41. 'Source/AuthProviders/GitHub/FIRGitHubAuthProvider.h',
  42. 'Source/AuthProviders/Google/FIRGoogleAuthProvider.h',
  43. 'Source/AuthProviders/OAuth/FIROAuthProvider.h',
  44. 'Source/AuthProviders/Phone/FIRPhoneAuthCredential.h',
  45. 'Source/AuthProviders/Phone/FIRPhoneAuthProvider.h',
  46. 'Source/AuthProviders/Twitter/FIRTwitterAuthProvider.h',
  47. 'Source/FIRUser.h',
  48. 'Source/FIRUserInfo.h'
  49. s.preserve_paths =
  50. 'README.md',
  51. 'CHANGELOG.md'
  52. s.xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' =>
  53. '$(inherited) ' + 'FIRAuth_VERSION=' + s.version.to_s +
  54. ' FIRAuth_MINOR_VERSION=' + s.version.to_s.split(".")[0] + "." + s.version.to_s.split(".")[1]
  55. }
  56. s.framework = 'Security'
  57. # s.dependency 'FirebaseDev/Core'
  58. s.dependency 'GTMSessionFetcher/Core', '~> 1.1'
  59. s.dependency 'GoogleToolboxForMac/NSDictionary+URLArguments', '~> 2.1'
  60. end