Podfile 1.4 KB

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