FirebaseInAppMessagingDisplay.podspec 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. Pod::Spec.new do |s|
  2. s.name = 'FirebaseInAppMessagingDisplay'
  3. s.version = '0.17.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.deprecated_in_favor_of = 'FirebaseInAppMessaging'
  21. s.prefix_header_file = false
  22. base_dir = "FirebaseInAppMessagingDisplay/"
  23. s.source_files = base_dir + '**/*.[mh]'
  24. s.pod_target_xcconfig = {
  25. 'GCC_C_LANGUAGE_STANDARD' => 'c99',
  26. 'GCC_PREPROCESSOR_DEFINITIONS' =>
  27. '$(inherited) ' +
  28. 'FIRInAppMessagingDisplay_LIB_VERSION=' + String(s.version)
  29. }
  30. end