FirebaseAppDistribution.podspec 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. Pod::Spec.new do |s|
  2. s.name = 'FirebaseAppDistribution'
  3. s.version = '0.0.1'
  4. s.summary = 'App Distribution for Firebase iOS SDK.'
  5. s.description = <<-DESC
  6. iOS SDK for App Distribution for Firebase.
  7. DESC
  8. s.homepage = 'https://developers.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 => 'AppDistribution-' + s.version.to_s
  14. }
  15. s.ios.deployment_target = '8.0'
  16. s.cocoapods_version = '>= 1.4.0'
  17. s.static_framework = true
  18. s.prefix_header_file = false
  19. base_dir = "FirebaseAppDistribution/Sources/"
  20. s.source_files = base_dir + '**/*.{c,h,m,mm}'
  21. s.public_header_files = base_dir + 'Public/*.h'
  22. s.private_header_files = base_dir + 'Private/*.h'
  23. s.dependency 'FirebaseCore', '~> 6.0'
  24. s.dependency 'AppAuth', '~> 1.2.0'
  25. s.dependency 'GoogleUtilities/AppDelegateSwizzler'
  26. s.pod_target_xcconfig = {
  27. 'GCC_C_LANGUAGE_STANDARD' => 'c99',
  28. 'GCC_PREPROCESSOR_DEFINITIONS' => 'FIRAppDistribution_VERSION=' + s.version.to_s
  29. }
  30. s.test_spec 'unit' do |unit_tests|
  31. unit_tests.source_files = 'FirebaseAppDistribution/Tests/Unit*/*.[mh]'
  32. end
  33. # end
  34. end