FirebaseMessaging.podspec 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # This podspec is not intended to be deployed. It is solely for the static
  2. # library framework build process at
  3. # https://github.com/firebase/firebase-ios-sdk/tree/master/BuildFrameworks
  4. Pod::Spec.new do |s|
  5. s.name = 'FirebaseMessaging'
  6. s.version = '2.0.0'
  7. s.summary = 'Firebase Open Source Libraries for iOS.'
  8. s.description = <<-DESC
  9. Simplify your iOS development, grow your user base, and monetize more effectively with Firebase.
  10. DESC
  11. s.homepage = 'https://firebase.google.com'
  12. s.license = { :type => 'Apache', :file => '../../LICENSE' }
  13. s.authors = 'Google, Inc.'
  14. # NOTE that the FirebaseCommunity pod is neither publicly deployed nor yet interchangeable with the
  15. # Firebase pod
  16. s.source = { :git => 'https://github.com/firebase/firebase-ios-sdk.git', :tag => s.version.to_s }
  17. s.social_media_url = 'https://twitter.com/Firebase'
  18. s.ios.deployment_target = '7.0'
  19. s.source_files = '**/*.[mh]'
  20. s.requires_arc = '*.m'
  21. s.public_header_files = 'Public/*.h'
  22. s.library = 'sqlite3'
  23. s.xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' =>
  24. '$(inherited) ' +
  25. 'GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 ' +
  26. 'FIRMessaging_LIB_VERSION=' + String(s.version)
  27. }
  28. s.framework = 'AddressBook'
  29. s.framework = 'SystemConfiguration'
  30. # s.dependency 'FirebaseCommunity/Core'
  31. s.dependency 'GoogleToolboxForMac/Logger', '~> 2.1'
  32. s.dependency 'Protobuf', '~> 3.1'
  33. end