Podfile 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. # Uncomment the next two lines for pre-release testing on internal repo
  2. #source 'sso://cpdc-internal/firebase'
  3. #source 'https://github.com/CocoaPods/Specs.git'
  4. # Uncomment the next two lines for pre-release testing on public repo
  5. #source 'https://github.com/Firebase/SpecsStaging.git'
  6. #source 'https://github.com/CocoaPods/Specs.git'
  7. use_frameworks!
  8. target 'Firestore_Example_iOS' do
  9. platform :ios, '8.0'
  10. # The next line is the forcing function for the Firebase pod. The Firebase
  11. # version's subspecs should depend on the component versions in their
  12. # corresponding podspec's.
  13. pod 'Firebase/CoreOnly', '5.20.1'
  14. pod 'FirebaseAuth', :path => '../../'
  15. pod 'FirebaseAuthInterop', :path => '../../'
  16. pod 'FirebaseCore', :path => '../../'
  17. pod 'GoogleUtilities', :path => '../../'
  18. pod 'FirebaseFirestore', :path => '../../'
  19. target 'Firestore_Tests_iOS' do
  20. inherit! :search_paths
  21. pod 'GoogleTest', :podspec => 'GoogleTest.podspec'
  22. pod 'ProtobufCpp', :podspec => 'ProtobufCpp.podspec'
  23. pod 'OCMock'
  24. pod 'leveldb-library'
  25. end
  26. target 'Firestore_Benchmarks_iOS' do
  27. inherit! :search_paths
  28. pod 'GoogleBenchmark', :podspec => 'GoogleBenchmark.podspec'
  29. end
  30. target 'Firestore_IntegrationTests_iOS' do
  31. inherit! :search_paths
  32. pod 'GoogleTest', :podspec => 'GoogleTest.podspec'
  33. pod 'OCMock'
  34. pod 'leveldb-library'
  35. end
  36. target 'Firestore_SwiftTests_iOS' do
  37. pod 'FirebaseFirestoreSwift', :path => '../../'
  38. end
  39. target 'Firestore_FuzzTests_iOS' do
  40. inherit! :search_paths
  41. platform :ios, '9.0'
  42. pod 'LibFuzzer', :podspec => 'LibFuzzer.podspec'
  43. pod '!ProtoCompiler'
  44. end
  45. end
  46. target 'Firestore_Example_macOS' do
  47. platform :osx, '10.10'
  48. pod 'FirebaseAuth', :path => '../../'
  49. pod 'FirebaseCore', :path => '../../'
  50. pod 'FirebaseFirestore', :path => '../../'
  51. target 'Firestore_Tests_macOS' do
  52. inherit! :search_paths
  53. pod 'GoogleTest', :podspec => 'GoogleTest.podspec'
  54. pod 'ProtobufCpp', :podspec => 'ProtobufCpp.podspec'
  55. pod 'OCMock'
  56. pod 'leveldb-library'
  57. end
  58. end