FirebaseInAppMessagingSwift.podspec 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. Pod::Spec.new do |s|
  2. s.name = 'FirebaseInAppMessagingSwift'
  3. s.version = '9.6.0-beta'
  4. s.summary = 'Swift Extensions for Firebase In-App Messaging'
  5. s.description = <<-DESC
  6. FirebaseInAppMessaging is the headless component of Firebase In-App Messaging on iOS client side.
  7. See more product details at https://firebase.google.com/products/in-app-messaging/ about Firebase In-App Messaging.
  8. DESC
  9. s.homepage = 'https://developers.google.com/'
  10. s.license = { :type => 'Apache-2.0', :file => 'LICENSE' }
  11. s.authors = 'Google, Inc.'
  12. s.source = {
  13. :git => 'https://github.com/Firebase/firebase-ios-sdk.git',
  14. :tag => 'CocoaPods-' + s.version.to_s
  15. }
  16. s.swift_version = '5.3'
  17. s.ios.deployment_target = '13.0'
  18. s.cocoapods_version = '>= 1.4.0'
  19. s.prefix_header_file = false
  20. s.source_files = [
  21. 'FirebaseInAppMessaging/Swift/Source/**/*.swift',
  22. ]
  23. s.test_spec 'unit' do |unit_tests|
  24. unit_tests.scheme = { :code_coverage => true }
  25. unit_tests.source_files = 'FirebaseInAppMessaging/Swift/Tests/Unit/*.swift'
  26. unit_tests.requires_app_host = true
  27. end
  28. s.framework = 'UIKit'
  29. s.dependency 'FirebaseInAppMessaging', '~> 9.0-beta'
  30. end