blob: a15446ea82e96f58f13d037f7ca9134d15c99fe4 (
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
|
# 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/Core', '4.8.0'
use_frameworks!
platform :ios, '8.0'
target 'Firestore_Example' do
pod 'FirebaseAuth', :path => '../../'
pod 'FirebaseCore', :path => '../../'
pod 'FirebaseFirestore', :path => '../../'
target 'Firestore_Tests' do
inherit! :search_paths
pod 'FirebaseCore', :path => '../../'
pod 'leveldb-library'
pod 'OCMock'
pod 'GoogleTest', :podspec => 'Tests/GoogleTest/GoogleTest.podspec'
end
target 'Firestore_IntegrationTests' do
inherit! :search_paths
pod 'FirebaseCore', :path => '../../'
pod 'OCMock'
end
end
target 'SwiftBuildTest' do
pod 'FirebaseFirestore', :path => '../../'
end
|