FirebaseAppDistribution.podspec 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. Pod::Spec.new do |s|
  2. s.name = 'FirebaseAppDistribution'
  3. s.version = '8.11.0-beta'
  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 => 'CocoaPods-' + s.version.to_s
  14. }
  15. s.ios.deployment_target = '10.0'
  16. s.cocoapods_version = '>= 1.4.0'
  17. s.prefix_header_file = false
  18. base_dir = "FirebaseAppDistribution/Sources/"
  19. s.source_files = [
  20. base_dir + '**/*.{c,h,m,mm}',
  21. 'FirebaseCore/Sources/Private/*.h',
  22. 'FirebaseInstallations/Source/Library/Private/*.h',
  23. ]
  24. s.public_header_files = base_dir + 'Public/FirebaseAppDistribution/*.h'
  25. s.dependency 'FirebaseCore', '~> 8.0'
  26. s.dependency 'GoogleUtilities/AppDelegateSwizzler', '~> 7.7'
  27. s.dependency 'GoogleUtilities/UserDefaults', '~> 7.7'
  28. s.dependency 'FirebaseInstallations', '~> 8.0'
  29. s.dependency 'GoogleDataTransport', '~> 9.1'
  30. s.pod_target_xcconfig = {
  31. 'GCC_C_LANGUAGE_STANDARD' => 'c99',
  32. 'HEADER_SEARCH_PATHS' => '"${PODS_TARGET_SRCROOT}"'
  33. }
  34. s.test_spec 'unit' do |unit_tests|
  35. unit_tests.scheme = { :code_coverage => true }
  36. unit_tests.source_files = 'FirebaseAppDistribution/Tests/Unit*/*.[mh]'
  37. unit_tests.resources = 'FirebaseAppDistribution/Tests/Unit/Resources/*'
  38. unit_tests.dependency 'OCMock'
  39. end
  40. # end
  41. end