FirebaseDynamicLinks.podspec 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. Pod::Spec.new do |s|
  2. s.name = 'FirebaseDynamicLinks'
  3. s.version = '11.13.0'
  4. s.summary = 'Firebase Dynamic Links'
  5. s.description = <<-DESC
  6. Firebase Dynamic Links are deep links that enhance user experience and increase engagement by retaining context post-install, across platforms.
  7. DESC
  8. s.homepage = 'https://firebase.google.com'
  9. s.license = { :type => 'Apache-2.0', :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.social_media_url = 'https://twitter.com/Firebase'
  16. s.ios.deployment_target = '13.0'
  17. s.swift_version = '5.9'
  18. # See https://firebase.google.com/support/dynamic-links-faq
  19. s.deprecated = true
  20. s.cocoapods_version = '>= 1.12.0'
  21. s.prefix_header_file = false
  22. s.source_files = [
  23. 'FirebaseDynamicLinks/Sources/**/*.[mh]',
  24. 'Interop/Analytics/Public/*.h',
  25. 'FirebaseCore/Extension/*.h',
  26. ]
  27. s.public_header_files = 'FirebaseDynamicLinks/Sources/Public/FirebaseDynamicLinks/*.h'
  28. s.resource_bundles = {
  29. "#{s.module_name}_Privacy" => 'FirebaseDynamicLinks/Sources/Resources/PrivacyInfo.xcprivacy'
  30. }
  31. s.frameworks = 'QuartzCore'
  32. s.weak_framework = 'WebKit'
  33. s.dependency 'FirebaseCore', '~> 11.13.0'
  34. s.pod_target_xcconfig = {
  35. 'GCC_C_LANGUAGE_STANDARD' => 'c99',
  36. 'GCC_PREPROCESSOR_DEFINITIONS' => 'FIRDynamicLinks3P GIN_SCION_LOGGING',
  37. 'HEADER_SEARCH_PATHS' => '"${PODS_TARGET_SRCROOT}"'
  38. }
  39. s.test_spec 'unit' do |unit_tests|
  40. unit_tests.scheme = { :code_coverage => true }
  41. unit_tests.source_files = [
  42. 'FirebaseDynamicLinks/Tests/Unit/*.[mh]',
  43. ]
  44. unit_tests.requires_app_host = true
  45. unit_tests.resources = 'FirebaseDynamicLinks/Tests/Unit/GoogleService-Info.plist',
  46. # Supply plist for custom domain testing.
  47. 'FirebaseDynamicLinks/Tests/Unit/DL-Info.plist'
  48. unit_tests.dependency 'OCMock'
  49. unit_tests.dependency 'GoogleUtilities/MethodSwizzler', '~> 8.1'
  50. unit_tests.dependency 'GoogleUtilities/SwizzlerTestHelpers', '~> 8.1'
  51. end
  52. end