Skip to content

Commit 90e1806

Browse files
committed
Fixed link error on iOS example app, due to a newer GoogleUtilities lib which is incompatible with the configured Firebase libs
Locked GoogleUtilities down to a specific version
1 parent 1ad2e25 commit 90e1806

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

example/ios/Podfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ target 'ReactNativeFirebaseUIExample' do
55
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks
66
# use_frameworks!
77

8+
# The following line hard selects GoogleUtilities 5.3.7
9+
# This line should probably be removed in the future but
10+
# fixes a linker problem on iOS, due to the fact that if
11+
# we ommit this line, then 5.4.0 gets installed, which
12+
# causes a link error.
13+
pod 'GoogleUtilities', '~> 5.3.7'
14+
15+
816
# Pods for ReactNativeFirebaseUIExample
917

1018
# Required by RNFirebase

example/ios/Podfile.lock

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,17 @@ PODS:
136136
- GoogleToolboxForMac/Defines (= 2.2.0)
137137
- "GoogleToolboxForMac/NSData+zlib (2.2.0)":
138138
- GoogleToolboxForMac/Defines (= 2.2.0)
139+
- GoogleUtilities (5.3.7):
140+
- GoogleUtilities/AppDelegateSwizzler (= 5.3.7)
141+
- GoogleUtilities/Environment (= 5.3.7)
142+
- GoogleUtilities/ISASwizzler (= 5.3.7)
143+
- GoogleUtilities/Logger (= 5.3.7)
144+
- GoogleUtilities/MethodSwizzler (= 5.3.7)
145+
- GoogleUtilities/Network (= 5.3.7)
146+
- "GoogleUtilities/NSData+zlib (= 5.3.7)"
147+
- GoogleUtilities/Reachability (= 5.3.7)
148+
- GoogleUtilities/SwizzlerTestHelpers (= 5.3.7)
149+
- GoogleUtilities/UserDefaults (= 5.3.7)
139150
- GoogleUtilities/AppDelegateSwizzler (5.3.7):
140151
- GoogleUtilities/Environment
141152
- GoogleUtilities/Logger
@@ -153,6 +164,7 @@ PODS:
153164
- "GoogleUtilities/NSData+zlib (5.3.7)"
154165
- GoogleUtilities/Reachability (5.3.7):
155166
- GoogleUtilities/Logger
167+
- GoogleUtilities/SwizzlerTestHelpers (5.3.7)
156168
- GoogleUtilities/UserDefaults (5.3.7):
157169
- GoogleUtilities/Logger
158170
- "gRPC-C++ (0.0.5)":
@@ -197,6 +209,7 @@ DEPENDENCIES:
197209
- Firebase/Performance (~> 5.15.0)
198210
- Firebase/RemoteConfig (~> 5.15.0)
199211
- Firebase/Storage (~> 5.15.0)
212+
- GoogleUtilities (~> 5.3.7)
200213
- SDWebImage (~> 4.0)
201214

202215
SPEC REPOS:
@@ -264,6 +277,6 @@ SPEC CHECKSUMS:
264277
Protobuf: 7a877b7f3e5964e3fce995e2eb323dbc6831bb5a
265278
SDWebImage: 3f3f0c02f09798048c47a5ed0a13f17b063572d8
266279

267-
PODFILE CHECKSUM: 17807d9c8dcf86a5c6b96ea8dc9b411fefd9d084
280+
PODFILE CHECKSUM: e43db4b065586235b97d91c28d5883dc5621daed
268281

269282
COCOAPODS: 1.6.1

0 commit comments

Comments
 (0)