aboutsummaryrefslogtreecommitdiffhomepage
path: root/Example/Podfile
blob: 35df51c316289d2cdbc9a2c84c25f989fda37458 (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

use_frameworks!

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

  pod 'FirebaseDev/Core', :path => '../'

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

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

  pod 'FirebaseDev/Core', :path => '../'

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

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

  pod 'FirebaseDev/Auth', :path => '../'

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

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

  pod 'FirebaseDev/Auth', :path => '../'

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

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

  pod 'FirebaseDev/Database', :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 'Database_Example_macOS' do
  platform :osx, '10.10'

  pod 'FirebaseDev/Database', :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 'Messaging_Example_iOS' do
  platform :ios, '8.0'

  pod 'FirebaseDev/Messaging', :path => '../'
  # Lock to the 1.0.9 version of InstanceID since 1.0.10 added a dependency
  # to FirebaseCore
  pod 'FirebaseInstanceID', '1.0.9'

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

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

  pod 'FirebaseDev/Storage', :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 'Storage_Example_macOS' do
  platform :osx, '10.10'

  pod 'FirebaseDev/Storage', :path => '../'

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

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