FirebaseAppDistributionInternal.podspec 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. #
  2. # Be sure to run `pod lib lint FirebaseAppDistributionInternal.podspec' to ensure this is a
  3. # valid spec before submitting.
  4. #
  5. Pod::Spec.new do |s|
  6. s.name = 'FirebaseAppDistributionInternal'
  7. s.version = '10.7.0-beta'
  8. s.summary = 'Firebase App Distribution Internal for Swift implementations'
  9. s.description = <<-DESC
  10. Not for public use.
  11. SDK for Swift code in Firebase App Distribution.
  12. DESC
  13. s.homepage = 'https://firebase.google.com'
  14. s.license = { :type => 'Apache-2.0', :file => 'LICENSE' }
  15. s.authors = 'Google, Inc.'
  16. s.source = {
  17. :git => 'https://github.com/firebase/firebase-ios-sdk.git',
  18. # :tag => 'CocoaPods-' + s.version.to_s
  19. :commit => '7a1a71cbd2bc0df069cd9b6cee6a7005e258ece0'
  20. }
  21. s.social_media_url = 'https://twitter.com/Firebase'
  22. ios_deployment_target = '11.0'
  23. s.swift_version = '5.3'
  24. s.ios.deployment_target = '11.0'
  25. s.cocoapods_version = '>= 1.4.0'
  26. s.prefix_header_file = false
  27. s.framework = 'Foundation'
  28. s.ios.framework = 'UIKit'
  29. base_dir = "FirebaseAppDistributionInternal/"
  30. s.source_files = [
  31. base_dir + 'Sources/**/*.{swift,h,m}',
  32. ]
  33. s.ios.resource_bundles = {
  34. 'AppDistributionInternalResources' => [
  35. base_dir + 'Resources/AppDistributionInternalStoryboard.storyboard',
  36. ]
  37. }
  38. s.dependency 'FirebaseCore', '~> 10.0'
  39. s.dependency 'FirebaseCoreExtension', '~> 10.0'
  40. s.dependency 'FirebaseInstallations', '~> 10.0'
  41. s.dependency 'GoogleUtilities/UserDefaults', '~> 7.8'
  42. s.pod_target_xcconfig = {
  43. 'GCC_C_LANGUAGE_STANDARD' => 'c99',
  44. 'HEADER_SEARCH_PATHS' => '"${PODS_TARGET_SRCROOT}"',
  45. }
  46. s.test_spec 'unit' do |unit_tests|
  47. unit_tests.scheme = { :code_coverage => true }
  48. unit_tests.source_files = [
  49. 'FirebaseAppDistributionInternal/Tests/Unit/**/*.swift',
  50. ]
  51. end
  52. end