Podfile 975 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. # The next line is the forcing function for the Firebase pod. The Firebase
  5. # version's subspecs should depend on the component versions in their
  6. # corresponding podspec's.
  7. pod 'Firebase/Core', '5.0.0'
  8. use_frameworks!
  9. pod 'FirebaseAuth', :path => '../../'
  10. pod 'FirebaseCore', :path => '../../'
  11. pod 'FirebaseFirestore', :path => '../../'
  12. target 'Firestore_Example_iOS' do
  13. platform :ios, '8.0'
  14. target 'Firestore_Tests_iOS' do
  15. inherit! :search_paths
  16. pod 'leveldb-library'
  17. pod 'OCMock'
  18. pod 'GoogleTest', :podspec => 'Tests/GoogleTest/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. end
  28. target 'SwiftBuildTest' do
  29. platform :ios, '8.0'
  30. end