Podfile 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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/Core', '5.4.1'
  11. pod 'FirebaseAuth', :path => '../../'
  12. pod 'FirebaseCore', :path => '../../'
  13. pod 'FirebaseFirestore', :path => '../../'
  14. target 'Firestore_Tests_iOS' do
  15. inherit! :search_paths
  16. pod 'leveldb-library'
  17. pod 'OCMock'
  18. pod 'GoogleTest', :podspec => 'GoogleTest.podspec'
  19. pod 'ProtobufCpp', :podspec => 'ProtobufCpp.podspec'
  20. end
  21. target 'Firestore_IntegrationTests_iOS' do
  22. inherit! :search_paths
  23. pod 'OCMock'
  24. end
  25. target 'Firestore_SwiftTests_iOS' do
  26. pod 'FirebaseFirestoreSwift', :path => '../../'
  27. end
  28. target 'SwiftBuildTest' do
  29. platform :ios, '8.0'
  30. end
  31. target 'Firestore_FuzzTests_iOS' do
  32. inherit! :search_paths
  33. pod 'LibFuzzer', :podspec => 'LibFuzzer.podspec'
  34. end
  35. end