FirebaseInAppMessaging.podspec 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. Pod::Spec.new do |s|
  2. s.name = 'FirebaseInAppMessaging'
  3. s.version = '0.15.4'
  4. s.summary = 'Firebase In-App Messaging for iOS'
  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://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 => 'InAppMessaging-' + 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/InAppMessaging/"
  22. s.source_files = base_dir + '**/*.[cmh]'
  23. s.public_header_files = base_dir + 'Public/*.h'
  24. s.pod_target_xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' =>
  25. '$(inherited) ' +
  26. 'FIRInAppMessaging_LIB_VERSION=' + String(s.version) + ' ' +
  27. 'PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1'
  28. }
  29. s.dependency 'FirebaseCore', '~> 6.2'
  30. s.ios.dependency 'FirebaseAnalyticsInterop', '~> 1.3'
  31. s.dependency 'FirebaseInstanceID', '~> 4.0'
  32. s.dependency 'GoogleDataTransportCCTSupport', '~> 1.0'
  33. end