FirebaseAuth.podspec 2.3 KB

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