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

Commit d784938

Browse files
Running in debug works, running in release on iOS causes crash #178
1 parent d97892d commit d784938

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

docs/CRASHREPORTING.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
<img src="images/features/crash.png" width="296px" height="124px" alt="Crash"/>
44

5+
> !! Disable for now as users reported prod builds would (ironically)
6+
> crash with this feature enabled.
7+
58
## Enabling Crash Reporting
69
Nothing to do - since plugin version 3.4.2 this plugin automatically uploads
710
crashes to your Firebase Console. Just check the 'Crash' menu item every now and then.

platforms/ios/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
pod 'Firebase', '~> 3.7.0'
33
pod 'Firebase/Database'
44
pod 'Firebase/Auth'
5-
pod 'Firebase/Crash'
5+
#pod 'Firebase/Crash'
66

77
# Uncomment if you want to enable Remote Config
88
#pod 'Firebase/RemoteConfig'

scripts/postinstall.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ function writePodFile(result) {
105105
`pod 'Firebase', '~> 3.7.0'
106106
pod 'Firebase/Database'
107107
pod 'Firebase/Auth'
108-
pod 'Firebase/Crash'
108+
#pod 'Firebase/Crash'
109109
110110
# Uncomment if you want to enable Remote Config
111111
` + (isSelected(result.remote_config) ? `` : `#`) + `pod 'Firebase/RemoteConfig'

0 commit comments

Comments
 (0)