Podfile 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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.1.0'
  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. end
  20. target 'Firestore_IntegrationTests_iOS' do
  21. inherit! :search_paths
  22. pod 'OCMock'
  23. end
  24. target 'Firestore_SwiftTests_iOS' do
  25. pod 'FirebaseFirestoreSwift', :path => '../../'
  26. end
  27. target 'SwiftBuildTest' do
  28. platform :ios, '8.0'
  29. end
  30. target 'Firestore_FuzzTests_iOS' do
  31. inherit! :search_paths
  32. pod 'LibFuzzer', :podspec => 'LibFuzzer.podspec'
  33. end
  34. end