Podfile 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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.15.990'
  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 'macOS_example' do
  47. platform :osx, '10.10'
  48. pod 'FirebaseAuth', :path => '../../'
  49. pod 'FirebaseCore', :path => '../../'
  50. pod 'FirebaseFirestore', :path => '../../'
  51. end