Podfile 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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.6.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 'leveldb-library'
  19. pod 'OCMock'
  20. pod 'GoogleTest', :podspec => 'GoogleTest.podspec'
  21. pod 'ProtobufCpp', :podspec => 'ProtobufCpp.podspec'
  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 'OCMock'
  30. end
  31. target 'Firestore_SwiftTests_iOS' do
  32. pod 'FirebaseFirestoreSwift', :path => '../../'
  33. end
  34. target 'Firestore_FuzzTests_iOS' do
  35. inherit! :search_paths
  36. pod 'LibFuzzer', :podspec => 'LibFuzzer.podspec'
  37. pod '!ProtoCompiler'
  38. end
  39. end