FirebaseDatabase.podspec 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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 = 'FirebaseDatabase'
  6. s.version = '4.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 FirebaseDev 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. 'third_party/Wrap-leveldb/APLevelDB.mm',
  21. 'third_party/SocketRocket/fbase64.c'
  22. s.public_header_files =
  23. 'Api/FirebaseDatabase.h',
  24. 'Api/FIRDataEventType.h',
  25. 'Api/FIRDataSnapshot.h',
  26. 'Api/FIRDatabaseQuery.h',
  27. 'Api/FIRDatabaseSwiftNameSupport.h',
  28. 'Api/FIRMutableData.h',
  29. 'Api/FIRServerValue.h',
  30. 'Api/FIRTransactionResult.h',
  31. 'Api/FIRDatabase.h',
  32. 'FIRDatabaseReference.h'
  33. s.library = 'c++'
  34. s.library = 'icucore'
  35. s.framework = 'CFNetwork'
  36. s.framework = 'Security'
  37. s.framework = 'SystemConfiguration'
  38. s.dependency 'leveldb-library'
  39. # s.dependency 'FirebaseDev/Core'
  40. s.xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' =>
  41. '$(inherited) ' +
  42. 'FIRDatabase_VERSION=' + s.version.to_s }
  43. end