FirebaseInAppMessagingDisplay.podspec 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. Pod::Spec.new do |s|
  2. s.name = 'FirebaseInAppMessagingDisplay'
  3. s.version = '0.15.0'
  4. s.summary = 'Firebase In-App Messaging UI for iOS'
  5. s.description = <<-DESC
  6. FirebaseInAppMessagingDisplay is the default client UI implementation for
  7. Firebase In-App Messaging SDK.
  8. DESC
  9. s.homepage = 'https://firebase.google.com'
  10. s.license = { :type => 'Apache', :file => 'LICENSE' }
  11. s.authors = 'Google, Inc.'
  12. s.source = {
  13. :git => 'https://github.com/firebase/firebase-ios-sdk.git',
  14. :tag => 'InAppMessagingDisplay-' + s.version.to_s
  15. }
  16. s.social_media_url = 'https://twitter.com/Firebase'
  17. s.ios.deployment_target = '8.0'
  18. s.cocoapods_version = '>= 1.4.0'
  19. s.static_framework = true
  20. s.prefix_header_file = false
  21. base_dir = "Firebase/InAppMessagingDisplay/"
  22. s.source_files = base_dir + '**/*.[mh]'
  23. s.public_header_files = base_dir + 'Public/*.h'
  24. s.resource_bundles = {
  25. 'InAppMessagingDisplayResources' => [ base_dir + 'Resources/*.xib',
  26. base_dir + 'Resources/*.storyboard',
  27. base_dir + 'Resources/*.png']
  28. }
  29. s.pod_target_xcconfig = {
  30. 'GCC_C_LANGUAGE_STANDARD' => 'c99',
  31. 'GCC_PREPROCESSOR_DEFINITIONS' =>
  32. '$(inherited) ' +
  33. 'FIRInAppMessagingDisplay_LIB_VERSION=' + String(s.version)
  34. }
  35. s.dependency 'FirebaseCore', '~> 6.0'
  36. s.dependency 'FirebaseInAppMessaging', '>=0.15.0'
  37. end