aboutsummaryrefslogtreecommitdiffhomepage
path: root/Example/Podfile
blob: a5ad33c90c1e9fdb30495ca78d5ba192eb7900ba (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
use_frameworks!

pod 'FirebaseCore', :path => '../'

target 'Core_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/Core', '4.6.0'

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

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

  pod 'FirebaseAuth', :path => '../'

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

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

  pod 'FirebaseDatabase', :path => '../'

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

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

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

  pod 'FirebaseMessaging' , :path => '../'
  pod 'FirebaseInstanceID'

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

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

  pod 'FirebaseStorage', :path => '../'

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

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

target 'Auth_Sample' do
  platform :ios, '8.0'
  pod 'FirebaseAuth', :path => '../'
  pod 'FirebaseCore', :path => '../'
  pod 'FBSDKLoginKit'
  pod 'GoogleSignIn'
  pod 'FirebaseInstanceID'
  pod 'GTMSessionFetcher/Core'

  target 'Auth_ApiTests' do
    inherit! :search_paths
  end

  target 'Auth_EarlGreyTests' do
    inherit! :search_paths
    pod 'EarlGrey'
  end
end

target 'Auth_SwiftSample' do
  platform :ios, '8.0'
  pod 'FirebaseAuth', :path => '../'
  pod 'FirebaseCore', :path => '../'
  pod 'GoogleSignIn'
  pod 'FirebaseInstanceID'
end

target 'Core_Example_macOS' do
  platform :osx, '10.10'

  pod 'FirebaseCore', :path => '../'

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

target 'Auth_Example_macOS' do
  platform :osx, '10.10'

  pod 'FirebaseAuth', :path => '../'

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

target 'Database_Example_macOS' do
  platform :osx, '10.10'

  pod 'FirebaseDatabase', :path => '../'

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

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

target 'Storage_Example_macOS' do
  platform :osx, '10.10'

  pod 'FirebaseStorage', :path => '../'

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

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