Podfile 981 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # The next line is the forcing function for the Firebase pod. The Firebase
  2. # version's subspecs should depend on the component versions in their
  3. # corresponding podspec's.
  4. pod 'Firebase/Core', '4.10.1'
  5. use_frameworks!
  6. platform :ios, '8.0'
  7. target 'Firestore_Example' do
  8. pod 'FirebaseAuth', :path => '../../'
  9. pod 'FirebaseCore', :path => '../../'
  10. pod 'FirebaseFirestore', :path => '../../'
  11. target 'Firestore_Tests' do
  12. inherit! :search_paths
  13. pod 'FirebaseCore', :path => '../../'
  14. pod 'leveldb-library'
  15. pod 'OCMock'
  16. pod 'GoogleTest', :podspec => 'Tests/GoogleTest/GoogleTest.podspec'
  17. end
  18. target 'Firestore_IntegrationTests' do
  19. inherit! :search_paths
  20. pod 'FirebaseCore', :path => '../../'
  21. pod 'OCMock'
  22. end
  23. target 'Firestore_SwiftTests_iOS' do
  24. pod 'FirebaseFirestore', :path => '../../'
  25. pod 'FirebaseFirestoreSwift', :path => '../../'
  26. end
  27. end
  28. target 'SwiftBuildTest' do
  29. pod 'FirebaseFirestore', :path => '../../'
  30. end