Skip to content
This repository was archived by the owner on Apr 4, 2023. It is now read-only.

Commit ed8572b

Browse files
CocoaPods dependency causing build failure #924
1 parent e25c03f commit ed8572b

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

publish/scripts/installer.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,9 @@ function writePodFile(result) {
324324
}
325325
try {
326326
fs.writeFileSync(directories.ios + '/Podfile',
327-
`pod 'Firebase/Core', '~> 5.6.0'
327+
`pod 'Firebase/Core', '~> 5.6.0'
328+
# Temporary fix, see https://github.com/EddyVerbruggen/nativescript-plugin-firebase/pull/926
329+
pod 'GoogleUtilities', '5.2.3'
328330
329331
# Authentication
330332
` + (!isPresent(result.authentication) || isSelected(result.authentication) ? `` : `#`) + `pod 'Firebase/Auth'

src/scripts/postinstall.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -3122,7 +3122,9 @@ function writePodFile(result) {
31223122
}
31233123
try {
31243124
fs.writeFileSync(directories.ios + '/Podfile',
3125-
`pod 'Firebase/Core', '~> 5.6.0'
3125+
`pod 'Firebase/Core', '~> 5.6.0'
3126+
# Temporary fix, see https://github.com/EddyVerbruggen/nativescript-plugin-firebase/pull/926
3127+
pod 'GoogleUtilities', '5.2.3'
31263128
31273129
# Authentication
31283130
` + (!isPresent(result.authentication) || isSelected(result.authentication) ? `` : `#`) + `pod 'Firebase/Auth'

0 commit comments

Comments
 (0)