FirebaseDynamicLinks.podspec 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. Pod::Spec.new do |s|
  2. s.name = 'FirebaseDynamicLinks'
  3. s.version = '3.4.1'
  4. s.summary = 'Firebase DynamicLinks for iOS'
  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', :file => 'LICENSE' }
  10. s.authors = 'Google, Inc.'
  11. s.source = {
  12. :git => 'https://github.com/firebase/firebase-ios-sdk.git',
  13. :tag => 'DynamicLinks-' + s.version.to_s
  14. }
  15. s.social_media_url = 'https://twitter.com/Firebase'
  16. s.ios.deployment_target = '8.0'
  17. s.cocoapods_version = '>= 1.4.0'
  18. s.static_framework = true
  19. s.prefix_header_file = false
  20. s.source_files = 'Firebase/DynamicLinks/**/*.[mh]'
  21. s.public_header_files = 'Firebase/DynamicLinks/Public/*.h'
  22. s.frameworks = 'AssetsLibrary', 'MessageUI', 'QuartzCore'
  23. s.weak_framework = 'WebKit'
  24. s.dependency 'FirebaseCore', '~> 5.2'
  25. s.ios.dependency 'FirebaseAnalytics', '~> 5.1'
  26. s.dependency 'FirebaseAnalyticsInterop', '~> 1.0'
  27. s.pod_target_xcconfig = {
  28. 'GCC_C_LANGUAGE_STANDARD' => 'c99',
  29. 'GCC_PREPROCESSOR_DEFINITIONS' => 'FIRDynamicLinks_VERSION=' + s.version.to_s +
  30. ' FIRDynamicLinks3P GIN_SCION_LOGGING',
  31. 'HEADER_SEARCH_PATHS' => '"${PODS_TARGET_SRCROOT}"/Firebase'
  32. }
  33. end