FirebaseStorage.podspec 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. Pod::Spec.new do |s|
  2. s.name = 'FirebaseStorage'
  3. s.version = '3.1.1'
  4. s.summary = 'Firebase Storage for iOS (plus community support for macOS and tvOS)'
  5. s.description = <<-DESC
  6. Firebase Storage provides robust, secure file uploads and downloads from Firebase SDKs, powered by Google Cloud Storage.
  7. DESC
  8. s.homepage = 'https://firebase.google.com'
  9. s.license = { :type => 'Apache', :file => 'LICENSE' }
  10. s.authors = 'Google, Inc.'
  11. s.source = {
  12. :git => 'https://github.com/firebase/firebase-ios-sdk.git',
  13. :tag => 'Storage-' + s.version.to_s
  14. }
  15. s.social_media_url = 'https://twitter.com/Firebase'
  16. s.ios.deployment_target = '8.0'
  17. s.osx.deployment_target = '10.10'
  18. s.tvos.deployment_target = '10.0'
  19. s.cocoapods_version = '>= 1.4.0'
  20. s.static_framework = true
  21. s.prefix_header_file = false
  22. s.source_files = 'Firebase/Storage/**/*.[mh]'
  23. s.public_header_files = 'Firebase/Storage/Public/*.h'
  24. s.ios.framework = 'MobileCoreServices'
  25. s.osx.framework = 'CoreServices'
  26. s.dependency 'FirebaseAuthInterop', '~> 1.0'
  27. s.dependency 'FirebaseCore', '~> 5.2'
  28. s.dependency 'GTMSessionFetcher/Core', '~> 1.1'
  29. s.pod_target_xcconfig = {
  30. 'GCC_C_LANGUAGE_STANDARD' => 'c99',
  31. 'GCC_PREPROCESSOR_DEFINITIONS' =>
  32. 'FIRStorage_VERSION=' + s.version.to_s
  33. }
  34. end