aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/Example/Podfile
blob: cde5780abb40fa7277cce6f5c3e9ce1310de6e72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Uncomment the next two lines for pre-release testing
#source 'sso://cpdc-internal/spec'
#source 'https://github.com/CocoaPods/Specs.git'

use_frameworks!

target 'Firestore_Example_iOS' do
  platform :ios, '8.0'

  # The next line is the forcing function for the Firebase pod. The Firebase
  # version's subspecs should depend on the component versions in their
  # corresponding podspec's.
  pod 'Firebase/CoreOnly', '5.4.0'

  pod 'FirebaseAuth', :path => '../../'
  pod 'FirebaseAuthInterop', :path => '../../'
  pod 'FirebaseCore', :path => '../../'
  pod 'GoogleUtilities', :path => '../../'
  pod 'FirebaseFirestore', :path => '../../'

  target 'Firestore_Tests_iOS' do
    inherit! :search_paths

    pod 'leveldb-library'
    pod 'OCMock'
    pod 'GoogleTest', :podspec => 'GoogleTest.podspec'
    pod 'ProtobufCpp', :podspec => 'ProtobufCpp.podspec'
  end

  target 'Firestore_IntegrationTests_iOS' do
    inherit! :search_paths

    pod 'OCMock'
  end

  target 'Firestore_SwiftTests_iOS' do
    pod 'FirebaseFirestoreSwift', :path => '../../'
  end

  target 'SwiftBuildTest' do
    platform :ios, '8.0'
  end

  target 'Firestore_FuzzTests_iOS' do
    inherit! :search_paths

    pod 'LibFuzzer', :podspec => 'LibFuzzer.podspec'
  end
end