Podfile 421 B

12345678910111213141516171819202122
  1. use_frameworks!
  2. platform :ios, '8.0'
  3. target 'Firestore_Example' do
  4. pod 'FirebaseCommunity/Core', :path => '../../'
  5. pod 'Firestore', :path => '../'
  6. target 'Firestore_Tests' do
  7. inherit! :search_paths
  8. pod 'OCMock'
  9. pod 'leveldb-library'
  10. end
  11. target 'Firestore_IntegrationTests' do
  12. inherit! :search_paths
  13. pod 'OCMock'
  14. end
  15. end
  16. target 'SwiftBuildTest' do
  17. pod 'Firestore', :path => '../'
  18. end