aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/Example/Podfile
blob: c79495ddbdb1c8ff16fd709a02d86c974f84c844 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
use_frameworks!
platform :ios, '8.0'

target 'Firestore_Example' do
  pod 'FirebaseCommunity/Core', :path => '../../'
  pod 'Firestore', :path => '../'

  target 'Firestore_Tests' do
    inherit! :search_paths
    pod 'OCMock'
    pod 'GoogleTest', :podspec => 'Tests/GoogleTest/GoogleTest.podspec'
    pod 'leveldb-library'
  end

  target 'Firestore_IntegrationTests' do
    inherit! :search_paths
    pod 'OCMock'
  end
end

target 'SwiftBuildTest' do
  pod 'Firestore', :path => '../'
end