Podfile 835 B

1234567891011121314151617181920212223242526272829303132333435
  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.8.0'
  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. end
  24. target 'SwiftBuildTest' do
  25. pod 'FirebaseFirestore', :path => '../../'
  26. end