react-native-firebase
react-native-firebase copied to clipboard
Location of firebase.json file
Issue
Many parts of the library rely on firebase.json
for loading boot-time configs, e.g. https://rnfirebase.io/in-app-messaging/usage#disable-collection-of-data, https://rnfirebase.io/perf/usage#disable-auto-initialization etc. AFAICT the doc always says that the file should be placed directly under <project_root>
. However, it seems that on iOS the build script does a recursive search of this file under all subdirectories of <project_root>
: https://github.com/invertase/react-native-firebase/blob/master/packages/app/ios_config.sh#L65-L75
Why is this problem? Well, if you're using this library, chances are you're also using other firebase services. In my case, I have a directory <project_root>/firebase
containing files that are intended to be deployed to firebase hosting. Incidentally the firebase CLI also requires a hard-coded firebase.json
config file, which is naturally placed under <projectd_root>/firebase/firebase.json
in my case. As a result, this file is always picked up first by FNFB's build script instead of <project_root>/firebase.json
due to lexicographical order.
Project Files
iOS
Click To Expand
ios/Podfile
:
- [ ] I'm not using Pods
- [x] I'm using Pods and my Podfile looks like:
# N/A
AppDelegate.m
:
// N/A
Android
Click To Expand
Have you converted to AndroidX?
- [ ] my application is an AndroidX application?
- [ ] I am using
android/gradle.settings
jetifier=true
for Android compatibility? - [ ] I am using the NPM package
jetifier
for react-native compatibility?
android/build.gradle
:
// N/A
android/app/build.gradle
:
// N/A
android/settings.gradle
:
// N/A
MainApplication.java
:
// N/A
AndroidManifest.xml
:
<!-- N/A -->
Environment
Click To Expand
react-native info
output:
OUTPUT GOES HERE
-
Platform that you're experiencing the issue on:
- [x] iOS
- [ ] Android
- [ ] iOS but have not tested behavior on Android
- [ ] Android but have not tested behavior on iOS
- [ ] Both
-
react-native-firebase
version you're using that has this issue:-
e.g. 5.4.3
-
-
Firebase
module(s) you're using that has the issue:-
e.g. Instance ID
-
-
Are you using
TypeScript
?-
Y/N
&VERSION
-
-
Are you using
Expo
?-
Y
&SDK VERSION
-
- 👉 Check out
React Native Firebase
andInvertase
on Twitter for updates on the library.
...and people wanted me to add non-deterministic file searching to the jetifier 😅
Actually to make matters worse, for Android, the build script searches recursively upward: https://github.com/invertase/react-native-firebase/blob/master/packages/app/android/firebase-json.gradle#L10-L17 which means the iOS and Android build might end up picking up a different version of firebase.json
:(
Hello 👋, to help manage issues we automatically close stale issues. This issue has been automatically marked as stale because it has not had activity for quite some time. Has this issue been fixed, or does it still require the community's attention?
This issue will be closed in 15 days if no further activity occurs. Thank you for your contributions.
This is still an open issue. Please don't close it yet.
Seems like as a stopgap we should advise in the docs to create a firebase.json empty at minimum, to stop this from happening - that's a PR we could merge immediately, and I recall that if it's malformed then plist injection fails, so the JSON should both exist and be verified syntactically until the ios build step explicitly fails on malformed json and/or recursive searching isn't done
SGTM
Hello 👋, to help manage issues we automatically close stale issues. This issue has been automatically marked as stale because it has not had activity for quite some time. Has this issue been fixed, or does it still require the community's attention?
This issue will be closed in 15 days if no further activity occurs. Thank you for your contributions.
This is still an open issue. Please don't close it yet.
Indeed - I see it every time I scan the queue but it hasn't made it high enough to get a time slice yet sadly. I'll pin it
@ashishonmobile this is unrelated to the issue you are posting on, I am going to hide the comment as unrelated in a moment after typing this. However, you should run https://github.com/mikehardy/rnfbdemo/blob/master/make-demo.sh to see what a correctly functioning clean project looks like in a variety of configurations. Make sure to read the script so you know what it is doing, what it demonstrates, and why.
iOS does not take values from firebase.json
placed at the root of react native project. I added the following in firebase.json
file and put it on the root of the react native project.
{
"react-native": {
"crashlytics_debug_enabled": true,
"crashlytics_is_error_generation_on_js_crash_enabled": true,
"crashlytics_javascript_exception_handler_chaining_enabled": false
}
}
While it works perfectly in Android, on iOS debug mode, app does not crash with following message in xcrun simctl spawn booted log stream --level debug --style compact | grep -i crash
2021-09-22 21:25:48.560 Db react_native_mystockalert[24240:c1385] [com.apple.defaults:User Defaults] found no value for key crashlytics_debug_enabled in CFPrefsSearchListSource<0x6000003b2a00> (Domain: io.invertase.firebase, Container: (null))
2021-09-22 21:25:48.560 Df react_native_mystockalert[24240:c1385] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 157] RNFBCrashlyticsInit crashlytics_debug_enabled via RNFBMeta: 0
2021-09-22 21:25:48.560 Df react_native_mystockalert[24240:c1385] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 160] RNFBCrashlyticsInit crashlytics_debug_enabled final value: 0
2021-09-22 21:25:48.560 Df react_native_mystockalert[24240:c1385] +[RNFBCrashlyticsInitProvider isCrashlyticsCollectionEnabled] [Line 49] RNFBCrashlyticsInit isCrashlyticsCollectionEnabled after checking crashlytics_debug_enabled: 0
2021-09-22 21:25:48.560 I react_native_mystockalert[24240:c1385] [com.facebook.react.log:native] Crashlytics - INFO: crashlytics collection is not enabled, not crashing.
@iqbalhusen please note that the firebase.json values are only ingested into the app via a ruby script that runs during pod install, if you do not run pod install you will not see new values. This trips me up some times! Please make sure that every time you change something in firebase.json you also re-run pod install, re build, and then try your test
@iqbalhusen please note that the firebase.json values are only ingested into the app via a ruby script that runs during pod install, if you do not run pod install you will not see new values. This trips me up some times! Please make sure that every time you change something in firebase.json you also re-run pod install, re build, and then try your test
@mikehardy Did that, but still same.
@iqbalhusen I understand you're still having a problem, all I can say is that I do not reproduce it and cannot confirm it. We test firebase.json values in the ios app all the time in our e2e environment and they work.
an empty file seems to do it for now (just using push notification from firebase anyway)
@pke do you mean you put empty content in firebase.json file under root? Then how did you specify flags?
Yes just a file with {}
in it
What flags are you referring to?
@pke I mean "messaging_ios_auto_register_for_remote_messages": false
. The only reason to use firebase.json for me was to specify that flag, but if I put empty firebase.json, then I wonder how do we tell the app to disable auto registration.
@iqbalhusen please note that the firebase.json values are only ingested into the app via a ruby script that runs during pod install, if you do not run pod install you will not see new values. This trips me up some times! Please make sure that every time you change something in firebase.json you also re-run pod install, re build, and then try your test
@mikehardy Did that, but still same.
Did u find any solution for this.? i also having the same issue muraziz
2022-04-22 18:53:18.248 Df Wapp[29180:2e49b] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 157] RNFBCrashlyticsInit crashlytics_debug_enabled via RNFBMeta: 0 2022-04-22 18:53:18.248 Df Wapp[29180:2e49b] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 160] RNFBCrashlyticsInit crashlytics_debug_enabled final value: 0 2022-04-22 18:53:18.248 Df Wapp[29180:2e49b] +[RNFBCrashlyticsInitProvider isCrashlyticsCollectionEnabled] [Line 49] RNFBCrashlyticsInit isCrashlyticsCollectionEnabled after checking crashlytics_debug_enabled: 0 2022-04-22 18:53:18.248 I Wapp[29180:2e49b] [com.facebook.react.log:native] Crashlytics - INFO: crashlytics collection is not enabled, not crashing.
@iqbalhusen I understand you're still having a problem, all I can say is that I do not reproduce it and cannot confirm it. We test firebase.json values in the ios app all the time in our e2e environment and they work.
can we confirm this. after updating to v11.3.0+ we can not do any testing on ios. above logs will be displayed.. i even created fresh RN project and did testing all the time in ios its not going to crash
2022-04-22 18:53:18.248 Df Wapp[29180:2e49b] +[RNFBSharedUtils getConfigBooleanValue🔑defaultValue:] [Line 157] RNFBCrashlyticsInit crashlytics_debug_enabled via RNFBMeta: 0 2022-04-22 18:53:18.248 Df Wapp[29180:2e49b] +[RNFBSharedUtils getConfigBooleanValue🔑defaultValue:] [Line 160] RNFBCrashlyticsInit crashlytics_debug_enabled final value: 0 2022-04-22 18:53:18.248 Df Wapp[29180:2e49b] +[RNFBCrashlyticsInitProvider isCrashlyticsCollectionEnabled] [Line 49] RNFBCrashlyticsInit isCrashlyticsCollectionEnabled after checking crashlytics_debug_enabled: 0 2022-04-22 18:53:18.248 I Wapp[29180:2e49b] [com.facebook.react.log:native] Crashlytics - INFO: crashlytics collection is not enabled, not crashing.
even we added firebase.json { "react-native": { "crashlytics_debug_enabled": true, "crashlytics_disable_auto_disabler": true, "crashlytics_auto_collection_enabled": true, "crashlytics_is_error_generation_on_js_crash_enabled": true, "crashlytics_javascript_exception_handler_chaining_enabled": true } }
@eranda-intervest have you tried: 1- clone https://github.com/mikehardy/rnfbdemo/blob/main/make-demo.sh repo drop and drop a Google Services plist in there for a test project 2- alter firebase.json to turn on things 3- alter App.js to add a call to the react-native-firebase crashlytics crash test method 4- wait for crash to show in console
That's basically what we do with the test app for our e2e testing, as I've told you before, and it works fine as I showed you already with a screenshot
At this point we cannot reproduce. So it is up to you to publish a reproduction showing there is a problem. Until then, we can't fix what we can't see. We see correct behavior.
@pke I mean
"messaging_ios_auto_register_for_remote_messages": false
. The only reason to use firebase.json for me was to specify that flag, but if I put empty firebase.json, then I wonder how do we tell the app to disable auto registration.
out of curiosity... why do you need to specify this flag?
@eranda-intervest have you tried: 1- clone https://github.com/mikehardy/rnfbdemo/blob/main/make-demo.sh repo drop and drop a Google Services plist in there for a test project 2- alter firebase.json to turn on things 3- alter App.js to add a call to the react-native-firebase crashlytics crash test method 4- wait for crash to show in console
That's basically what we do with the test app for our e2e testing, as I've told you before, and it works fine as I showed you already with a screenshot
At this point we cannot reproduce. So it is up to you to publish a reproduction showing there is a problem. Until then, we can't fix what we can't see. We see correct behavior.
2022-04-22 18:53:18.248 Df Wapp[29180:2e49b] +[RNFBSharedUtils getConfigBooleanValue🔑defaultValue:] [Line 157] RNFBCrashlyticsInit crashlytics_debug_enabled via RNFBMeta: 0 2022-04-22 18:53:18.248 Df Wapp[29180:2e49b] +[RNFBSharedUtils getConfigBooleanValue🔑defaultValue:] [Line 160] RNFBCrashlyticsInit crashlytics_debug_enabled final value: 0 2022-04-22 18:53:18.248 Df Wapp[29180:2e49b] +[RNFBCrashlyticsInitProvider isCrashlyticsCollectionEnabled] [Line 49] RNFBCrashlyticsInit isCrashlyticsCollectionEnabled after checking crashlytics_debug_enabled: 0 2022-04-22 18:53:18.248 I Wapp[29180:2e49b] [com.facebook.react.log:native] Crashlytics - INFO: crashlytics collection is not enabled, not crashing.
can't you please let us know the reason why this is coming like this even we have followed ur every steps mentioned. appreciate if can share how to enable this ? 2022-04-22 18:53:18.248 I Wapp[29180:2e49b] [com.facebook.react.log:native] Crashlytics - INFO: crashlytics collection is not enabled, not crashing.
iOS does not take values from
firebase.json
placed at the root of react native project. I added the following infirebase.json
file and put it on the root of the react native project.{ "react-native": { "crashlytics_debug_enabled": true, "crashlytics_is_error_generation_on_js_crash_enabled": true, "crashlytics_javascript_exception_handler_chaining_enabled": false } }
While it works perfectly in Android, on iOS debug mode, app does not crash with following message in
xcrun simctl spawn booted log stream --level debug --style compact | grep -i crash
2021-09-22 21:25:48.560 Db react_native_mystockalert[24240:c1385] [com.apple.defaults:User Defaults] found no value for key crashlytics_debug_enabled in CFPrefsSearchListSource<0x6000003b2a00> (Domain: io.invertase.firebase, Container: (null)) 2021-09-22 21:25:48.560 Df react_native_mystockalert[24240:c1385] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 157] RNFBCrashlyticsInit crashlytics_debug_enabled via RNFBMeta: 0 2021-09-22 21:25:48.560 Df react_native_mystockalert[24240:c1385] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 160] RNFBCrashlyticsInit crashlytics_debug_enabled final value: 0 2021-09-22 21:25:48.560 Df react_native_mystockalert[24240:c1385] +[RNFBCrashlyticsInitProvider isCrashlyticsCollectionEnabled] [Line 49] RNFBCrashlyticsInit isCrashlyticsCollectionEnabled after checking crashlytics_debug_enabled: 0 2021-09-22 21:25:48.560 I react_native_mystockalert[24240:c1385] [com.facebook.react.log:native] Crashlytics - INFO: crashlytics collection is not enabled, not crashing.
This is exactly what i m also facing. even we do pod install its not working
@eranda-intervest I feel like I/we are making no progress. I offer you concrete solutions including code and reproduction repositories and you offer comments.
POST A GITHUB REPO SHOWING THE PROBLEM
Then we can move forward.
https://stackoverflow.com/help/minimal-reproducible-example - use my make-demo script to scaffold it
@mikehardy please clone this test project and let me know if you can issue is reproducible form this project https://github.com/eranda-intervest/crashtest/tree/main/Wapp
and you can find steps from here also https://stackoverflow.com/questions/71939074/crashlytics-not-working-in-ios-and-given-log-as-crashlytics-collection-is-not-en/71999382#71999382
I did, looks good to me. Please note, this is an issue hijack @eranda-intervest - this is not your issue, and is likely not related to your issue, so I will hide these comments after this reply
I cloned your repo
yarn install
npx pod-install
yarn ios
xcrun simctl spawn booted log stream --level debug --style compact > ios.log
cat ios.log |grep -i crashlytics
produces this output, it looks exactly as I would expect, debug crashes are enabled. You likely have a crash report now in this test project since I restarted the app (so the report sends...)
2022-04-25 09:30:48.426 Df Wapp[29280:62c40] [Firebase/Crashlytics] Version 8.15.0
2022-04-25 09:30:48.512 Db Wapp[29280:62c40] [com.apple.defaults:User Defaults] found no value for key crashlytics_debug_enabled in CFPrefsSearchListSource<0x6000024fd600> (Domain: io.invertase.firebase, Container: (null))
2022-04-25 09:30:48.512 Df Wapp[29280:62c40] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 150] RNFBCrashlyticsInit crashlytics_debug_enabled via RNFBJSON: 1
2022-04-25 09:30:48.513 Df Wapp[29280:62c40] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 160] RNFBCrashlyticsInit crashlytics_debug_enabled final value: 1
2022-04-25 09:30:48.513 Db Wapp[29280:62c40] [com.apple.defaults:User Defaults] found no value for key crashlytics_auto_collection_enabled in CFPrefsSearchListSource<0x6000024fd600> (Domain: io.invertase.firebase, Container: (null))
2022-04-25 09:30:48.513 Db Wapp[29280:62c40] [com.apple.defaults:User Defaults] found no value for key crashlytics_auto_collection_enabled in CFPrefsSearchListSource<0x6000024fd600> (Domain: io.invertase.firebase, Container: (null))
2022-04-25 09:30:48.514 Df Wapp[29280:62c40] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 150] RNFBCrashlyticsInit crashlytics_auto_collection_enabled via RNFBJSON: 1
2022-04-25 09:30:48.514 Df Wapp[29280:62c40] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 160] RNFBCrashlyticsInit crashlytics_auto_collection_enabled final value: 1
2022-04-25 09:30:48.539 Df Wapp[29280:62c40] +[RNFBCrashlyticsInitProvider configureWithApp:] [Line 101] RNFBCrashlyticsInit initialization successful
2022-04-25 09:30:48.571 Df Wapp[29280:62c63] [com.apple.network:connection] [C3 E8806167-94E8-4948-9960-D6D54BA17D71 firebase-settings.crashlytics.com:443 tcp, url hash: 9a210d7f, tls, definite, attribution: developer, context: com.apple.CFNetwork.NSURLSession.{DEECE77E-F0AE-44CB-AB89-8C3A3FB4FD5F}{(null)}{Y}{2} (private), proc: FB3C3599-533A-329F-8F4B-2779F98BE5D0] start
2022-04-25 09:30:48.571 I Wapp[29280:62c63] [com.apple.network:connection] nw_endpoint_handler_start [C3 firebase-settings.crashlytics.com:443 initial path ((null))]
2022-04-25 09:30:48.577 Df Wapp[29280:62c63] [com.apple.network:connection] [C3 firebase-settings.crashlytics.com:443 initial path ((null))] event: path:start @0.005s
2022-04-25 09:30:48.579 Db Wapp[29280:62c63] [com.apple.network:connection] nw_endpoint_handler_path_change [C3 firebase-settings.crashlytics.com:443 waiting path (satisfied (Path is satisfied), interface: en0)]
2022-04-25 09:30:48.581 Df Wapp[29280:62c63] [com.apple.network:connection] [C3 firebase-settings.crashlytics.com:443 waiting path (satisfied (Path is satisfied), interface: en0)] event: path:satisfied @0.009s, uuid: B5D7CB2B-FD9E-4C5F-A434-76961A258794
2022-04-25 09:30:48.582 I Wapp[29280:62c63] [com.apple.network:connection] nw_connection_endpoint_report_on_nw_queue [C3 firebase-settings.crashlytics.com:443 waiting path (satisfied (Path is satisfied), interface: en0)] skipping state update
2022-04-25 09:30:48.583 Db Wapp[29280:62c63] [com.apple.network:] nw_endpoint_proxy_handler_should_use_proxy Looking up proxy for hostname: firebase-settings.crashlytics.com, ifindex: 0
2022-04-25 09:30:48.603 Db Wapp[29280:62c63] [com.apple.network:connection] -[NWConcrete_nw_endpoint_resolver startWithHandler:] [C3 firebase-settings.crashlytics.com:443 waiting resolver (satisfied (Path is satisfied), interface: en0)]
2022-04-25 09:30:48.603 Df Wapp[29280:62c63] [com.apple.network:connection] [C3 firebase-settings.crashlytics.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] event: resolver:start_dns @0.031s
2022-04-25 09:30:48.604 I Wapp[29280:62c63] [com.apple.network:connection] nw_resolver_create_dns_service_locked [C3] Starting host resolution firebase-settings.crashlytics.com:443, flags 0xc000d000 proto 0
2022-04-25 09:30:48.605 I Wapp[29280:62c63] [com.apple.network:connection] nw_resolver_host_resolve_callback [C3] flags=0x40000002 ifindex=0 error=NoSuchRecord(-65554) hostname=firebase-settings.crashlytics.com. addr=:: ttl=60
2022-04-25 09:30:48.608 Db Wapp[29280:62c63] [com.apple.network:connection] nw_endpoint_resolver_update [C3 firebase-settings.crashlytics.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] resolver is in_progress
2022-04-25 09:30:48.613 Db Wapp[29280:62c63] [com.apple.network:connection] nw_endpoint_resolver_update [C3 firebase-settings.crashlytics.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] Updated endpoint list is ()
2022-04-25 09:30:48.684 I Wapp[29280:62cb4] [com.apple.network:connection] nw_resolver_host_resolve_callback [C3] flags=0x2 ifindex=0 error=NoError(0) hostname=firebase-settings.crashlytics.com. addr=142.250.78.99 ttl=377
2022-04-25 09:30:48.685 Db Wapp[29280:62cb4] [com.apple.network:connection] nw_endpoint_resolver_update [C3 firebase-settings.crashlytics.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] resolver is complete
2022-04-25 09:30:48.685 Df Wapp[29280:62cb4] [com.apple.network:connection] nw_endpoint_resolver_update [C3 firebase-settings.crashlytics.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] Adding endpoint handler for 142.250.78.99:443
2022-04-25 09:30:48.685 Db Wapp[29280:62cb4] [com.apple.network:connection] nw_endpoint_resolver_update [C3 firebase-settings.crashlytics.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] Updated endpoint list is (142.250.78.99:443)
2022-04-25 09:30:48.685 Df Wapp[29280:62cb4] [com.apple.network:connection] [C3 firebase-settings.crashlytics.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] event: resolver:receive_dns @0.113s
2022-04-25 09:30:48.685 I Wapp[29280:62cb4] [com.apple.network:connection] nw_endpoint_resolver_start_next_child [C3 firebase-settings.crashlytics.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] starting child endpoint 142.250.78.99:443
2022-04-25 09:30:48.685 Db Wapp[29280:62cb4] [com.apple.network:connection] nw_endpoint_resolver_receive_report [C3 firebase-settings.crashlytics.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] received child report: [C3.1 142.250.78.99:443 initial path ((null))]
2022-04-25 09:30:48.686 Db Wapp[29280:62cb4] [com.apple.network:connection] nw_endpoint_resolver_receive_report [C3 firebase-settings.crashlytics.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] received child report: [C3.1 142.250.78.99:443 waiting path (satisfied (Path is satisfied), interface: en0)]
2022-04-25 09:30:49.747 Db Wapp[29280:62cb4] [com.apple.network:connection] nw_endpoint_resolver_receive_report [C3 firebase-settings.crashlytics.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] received child report: [C3.1 142.250.78.99:443 in_progress socket-flow (satisfied (Path is satisfied), interface: en0)]
2022-04-25 09:30:49.748 I Wapp[29280:62cb4] [com.apple.network:connection] nw_endpoint_resolver_start_next_child [C3 firebase-settings.crashlytics.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] starting next child endpoint in 100ms
2022-04-25 09:30:49.781 Db Wapp[29280:62c63] [com.apple.network:connection] nw_endpoint_resolver_receive_report [C3 firebase-settings.crashlytics.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] received child report: [C3.1 142.250.78.99:443 in_progress socket-flow (satisfied (Path is satisfied), interface: en0)]
2022-04-25 09:30:49.781 Df Wapp[29280:62c63] [com.apple.network:connection] [C3 firebase-settings.crashlytics.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] event: flow:finish_transport @1.209s
2022-04-25 09:30:49.979 Db trustd[27095:629b5] [com.apple.securityd:accept] replacing non ev reject score: 0 with non ev score: 10011117 <SecCertificatePathVC certs: <cert(0x7feb8d009400) s: crashlytics.com i: GTS CA 1C3>, <cert(0x7feb8d010e00) s: GTS CA 1C3 i: GTS Root R1>, <cert(0x7feb8ba0d0f0) s: GTS Root R1 i: GTS Root R1> >
2022-04-25 09:30:49.980 Db trustd[27095:629b5] [com.apple.securityd:trust] completed: <SecCertificatePathVC certs: <cert(0x7feb8d009400) s: crashlytics.com i: GTS CA 1C3>, <cert(0x7feb8d010e00) s: GTS CA 1C3 i: GTS Root R1>, <cert(0x7feb8ba0d0f0) s: GTS Root R1 i: GTS Root R1> > details: (
2022-04-25 09:30:49.989 Db trustd[27095:629b5] [com.apple.securityd:accept] replacing non ev reject score: 0 with non ev score: 10011117 <SecCertificatePathVC certs: <cert(0x7feb91009a00) s: crashlytics.com i: GTS CA 1C3>, <cert(0x7feb91014a00) s: GTS CA 1C3 i: GTS Root R1>, <cert(0x7feb8fb08ba0) s: GTS Root R1 i: GTS Root R1> >
2022-04-25 09:30:49.990 Db trustd[27095:629b5] [com.apple.securityd:trust] completed: <SecCertificatePathVC certs: <cert(0x7feb91009a00) s: crashlytics.com i: GTS CA 1C3>, <cert(0x7feb91014a00) s: GTS CA 1C3 i: GTS Root R1>, <cert(0x7feb8fb08ba0) s: GTS Root R1 i: GTS Root R1> > details: (
2022-04-25 09:30:49.994 Db Wapp[29280:62c60] [com.apple.network:connection] nw_endpoint_resolver_receive_report [C3 firebase-settings.crashlytics.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] received child report: [C3.1 142.250.78.99:443 ready socket-flow (satisfied (Path is satisfied), interface: en0)]
2022-04-25 09:30:49.994 Df Wapp[29280:62c60] [com.apple.network:connection] [C3 firebase-settings.crashlytics.com:443 ready resolver (satisfied (Path is satisfied), interface: en0)] event: flow:finish_connect @1.422s
2022-04-25 09:30:49.994 Db Wapp[29280:62c60] [com.apple.network:connection] nw_endpoint_resolver_receive_report [C3 firebase-settings.crashlytics.com:443 ready resolver (satisfied (Path is satisfied), interface: en0)] received child report: [C3.1 142.250.78.99:443 ready socket-flow (satisfied (Path is satisfied), interface: en0)]
2022-04-25 09:30:49.995 Df Wapp[29280:62c60] [com.apple.network:connection] [C3 firebase-settings.crashlytics.com:443 ready resolver (satisfied (Path is satisfied), interface: en0)] event: flow:changed_viability @1.423s
2022-04-25 09:30:49.995 Db Wapp[29280:62c60] [com.apple.CFNetwork:Coalescing] new connection to firebase-settings.crashlytics.com config 0x600000ac18e0
2022-04-25 09:30:50.246 Df Wapp[29280:62c5e] [com.apple.network:connection] [C3 E8806167-94E8-4948-9960-D6D54BA17D71 firebase-settings.crashlytics.com:443 tcp, url hash: 9a210d7f, tls, definite, attribution: developer] cancel
2022-04-25 09:30:50.246 Df Wapp[29280:62c5e] [com.apple.network:connection] [C3 E8806167-94E8-4948-9960-D6D54BA17D71 firebase-settings.crashlytics.com:443 tcp, url hash: 9a210d7f, tls, definite, attribution: developer] cancelled
2022-04-25 09:30:50.246 I Wapp[29280:62c5e] [com.apple.network:connection] nw_endpoint_handler_cancel [C3 firebase-settings.crashlytics.com:443 ready resolver (satisfied (Path is satisfied), interface: en0)]
2022-04-25 09:30:50.246 I Wapp[29280:62c5e] [com.apple.network:connection] nw_association_schedule_deactivation <nw_association firebase-settings.crashlytics.com:443> will become dormant after 10000ms of inactivity
2022-04-25 09:30:50.249 I Wapp[29280:62c5e] [com.apple.network:connection] [C3 firebase-settings.crashlytics.com:443 tcp, url hash: 9a210d7f, tls, definite, attribution: developer] dealloc
2022-04-25 09:31:00.246 I Wapp[29280:62cb1] [com.apple.network:connection] nw_association_schedule_deactivation_block_invoke <nw_association firebase-settings.crashlytics.com:443> becoming dormant
2022-04-25 09:31:18.132 Db Wapp[29280:62c99] [com.apple.defaults:User Defaults] found no value for key crashlytics_debug_enabled in CFPrefsSearchListSource<0x6000024fd600> (Domain: io.invertase.firebase, Container: (null))
2022-04-25 09:31:18.132 Df Wapp[29280:62c99] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 150] RNFBCrashlyticsInit crashlytics_debug_enabled via RNFBJSON: 1
2022-04-25 09:31:18.132 Df Wapp[29280:62c99] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 160] RNFBCrashlyticsInit crashlytics_debug_enabled final value: 1
2022-04-25 09:31:18.133 Db Wapp[29280:62c99] [com.apple.defaults:User Defaults] found no value for key crashlytics_auto_collection_enabled in CFPrefsSearchListSource<0x6000024fd600> (Domain: io.invertase.firebase, Container: (null))
2022-04-25 09:31:18.133 Db Wapp[29280:62c99] [com.apple.defaults:User Defaults] found no value for key crashlytics_auto_collection_enabled in CFPrefsSearchListSource<0x6000024fd600> (Domain: io.invertase.firebase, Container: (null))
2022-04-25 09:31:18.133 Df Wapp[29280:62c99] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 150] RNFBCrashlyticsInit crashlytics_auto_collection_enabled via RNFBJSON: 1
2022-04-25 09:31:18.133 Df Wapp[29280:62c99] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 160] RNFBCrashlyticsInit crashlytics_auto_collection_enabled final value: 1
2022-04-25 09:31:18.133 Db Wapp[29280:62c99] [com.apple.defaults:User Defaults] found no value for key crashlytics_is_error_generation_on_js_crash_enabled in CFPrefsSearchListSource<0x6000024fd600> (Domain: io.invertase.firebase, Container: (null))
2022-04-25 09:31:18.133 Df Wapp[29280:62c99] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 150] RNFBCrashlyticsInit crashlytics_is_error_generation_on_js_crash_enabled via RNFBJSON: 1
2022-04-25 09:31:18.134 Df Wapp[29280:62c99] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 160] RNFBCrashlyticsInit crashlytics_is_error_generation_on_js_crash_enabled final value: 1
2022-04-25 09:31:18.134 Db Wapp[29280:62c99] [com.apple.defaults:User Defaults] found no value for key crashlytics_javascript_exception_handler_chaining_enabled in CFPrefsSearchListSource<0x6000024fd600> (Domain: io.invertase.firebase, Container: (null))
2022-04-25 09:31:18.134 Df Wapp[29280:62c99] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 150] RNFBCrashlyticsInit crashlytics_javascript_exception_handler_chaining_enabled via RNFBJSON: 1
2022-04-25 09:31:18.134 Df Wapp[29280:62c99] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 160] RNFBCrashlyticsInit crashlytics_javascript_exception_handler_chaining_enabled final value: 1
2022-04-25 09:37:41.970 Db Wapp[29280:639fc] [com.apple.defaults:User Defaults] found no value for key crashlytics_debug_enabled in CFPrefsSearchListSource<0x6000024fd600> (Domain: io.invertase.firebase, Container: (null))
2022-04-25 09:37:41.970 Df Wapp[29280:639fc] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 150] RNFBCrashlyticsInit crashlytics_debug_enabled via RNFBJSON: 1
2022-04-25 09:37:41.970 Df Wapp[29280:639fc] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 160] RNFBCrashlyticsInit crashlytics_debug_enabled final value: 1
2022-04-25 09:37:41.970 Db Wapp[29280:639fc] [com.apple.defaults:User Defaults] found no value for key crashlytics_auto_collection_enabled in CFPrefsSearchListSource<0x6000024fd600> (Domain: io.invertase.firebase, Container: (null))
2022-04-25 09:37:41.970 Db Wapp[29280:639fc] [com.apple.defaults:User Defaults] found no value for key crashlytics_auto_collection_enabled in CFPrefsSearchListSource<0x6000024fd600> (Domain: io.invertase.firebase, Container: (null))
2022-04-25 09:37:41.970 Df Wapp[29280:639fc] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 150] RNFBCrashlyticsInit crashlytics_auto_collection_enabled via RNFBJSON: 1
2022-04-25 09:37:41.970 Df Wapp[29280:639fc] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 160] RNFBCrashlyticsInit crashlytics_auto_collection_enabled final value: 1
2022-04-25 09:41:11.022 Df Wapp[29537:63f0b] [Firebase/Crashlytics] Version 8.15.0
2022-04-25 09:41:11.047 Db Wapp[29537:63f0b] [com.apple.defaults:User Defaults] found no value for key crashlytics_debug_enabled in CFPrefsSearchListSource<0x600003668980> (Domain: io.invertase.firebase, Container: (null))
2022-04-25 09:41:11.047 Df Wapp[29537:63f0b] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 150] RNFBCrashlyticsInit crashlytics_debug_enabled via RNFBJSON: 1
2022-04-25 09:41:11.047 Df Wapp[29537:63f0b] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 160] RNFBCrashlyticsInit crashlytics_debug_enabled final value: 1
2022-04-25 09:41:11.047 Db Wapp[29537:63f0b] [com.apple.defaults:User Defaults] found no value for key crashlytics_auto_collection_enabled in CFPrefsSearchListSource<0x600003668980> (Domain: io.invertase.firebase, Container: (null))
2022-04-25 09:41:11.047 Db Wapp[29537:63f0b] [com.apple.defaults:User Defaults] found no value for key crashlytics_auto_collection_enabled in CFPrefsSearchListSource<0x600003668980> (Domain: io.invertase.firebase, Container: (null))
2022-04-25 09:41:11.047 Df Wapp[29537:63f0b] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 150] RNFBCrashlyticsInit crashlytics_auto_collection_enabled via RNFBJSON: 1
2022-04-25 09:41:11.048 Df Wapp[29537:63f0b] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 160] RNFBCrashlyticsInit crashlytics_auto_collection_enabled final value: 1
2022-04-25 09:41:11.048 Df Wapp[29537:63f0b] +[RNFBCrashlyticsInitProvider configureWithApp:] [Line 101] RNFBCrashlyticsInit initialization successful
2022-04-25 09:41:11.534 Df Wapp[29537:63f34] [com.apple.network:connection] [C5 D42D568C-DE1F-4A67-98E7-38C4C9796BA9 crashlyticsreports-pa.googleapis.com:443 tcp, url hash: 229efdf0, tls, definite, attribution: developer, context: com.apple.CFNetwork.NSURLSession.{364F4B2E-C57E-47D3-8018-2A303A7D8D5E}{(null)}{Y}{2} (private), proc: FB3C3599-533A-329F-8F4B-2779F98BE5D0] start
2022-04-25 09:41:11.534 I Wapp[29537:63f34] [com.apple.network:connection] nw_endpoint_handler_start [C5 crashlyticsreports-pa.googleapis.com:443 initial path ((null))]
2022-04-25 09:41:11.535 Df Wapp[29537:63f34] [com.apple.network:connection] [C5 crashlyticsreports-pa.googleapis.com:443 initial path ((null))] event: path:start @0.000s
2022-04-25 09:41:11.535 Db Wapp[29537:63f34] [com.apple.network:connection] nw_endpoint_handler_path_change [C5 crashlyticsreports-pa.googleapis.com:443 waiting path (satisfied (Path is satisfied), interface: en0)]
2022-04-25 09:41:11.535 Df Wapp[29537:63f34] [com.apple.network:connection] [C5 crashlyticsreports-pa.googleapis.com:443 waiting path (satisfied (Path is satisfied), interface: en0)] event: path:satisfied @0.000s, uuid: E1D5D7E3-4629-4DF0-9A68-89542F4A8E31
2022-04-25 09:41:11.535 I Wapp[29537:63f34] [com.apple.network:connection] nw_connection_endpoint_report_on_nw_queue [C5 crashlyticsreports-pa.googleapis.com:443 waiting path (satisfied (Path is satisfied), interface: en0)] skipping state update
2022-04-25 09:41:11.535 Db Wapp[29537:63f34] [com.apple.network:] nw_endpoint_proxy_handler_should_use_proxy Looking up proxy for hostname: crashlyticsreports-pa.googleapis.com, ifindex: 0
2022-04-25 09:41:11.536 Db Wapp[29537:63f34] [com.apple.network:connection] -[NWConcrete_nw_endpoint_resolver startWithHandler:] [C5 crashlyticsreports-pa.googleapis.com:443 waiting resolver (satisfied (Path is satisfied), interface: en0)]
2022-04-25 09:41:11.536 Df Wapp[29537:63f34] [com.apple.network:connection] [C5 crashlyticsreports-pa.googleapis.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] event: resolver:start_dns @0.001s
2022-04-25 09:41:11.537 I Wapp[29537:63f34] [com.apple.network:connection] nw_resolver_create_dns_service_locked [C5] Starting host resolution crashlyticsreports-pa.googleapis.com:443, flags 0xc000d000 proto 0
2022-04-25 09:41:11.537 I Wapp[29537:63f34] [com.apple.network:connection] nw_resolver_host_resolve_callback [C5] flags=0x40000002 ifindex=0 error=NoSuchRecord(-65554) hostname=crashlyticsreports-pa.googleapis.com. addr=:: ttl=60
2022-04-25 09:41:11.537 Db Wapp[29537:63f34] [com.apple.network:connection] nw_endpoint_resolver_update [C5 crashlyticsreports-pa.googleapis.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] resolver is in_progress
2022-04-25 09:41:11.537 Db Wapp[29537:63f34] [com.apple.network:connection] nw_endpoint_resolver_update [C5 crashlyticsreports-pa.googleapis.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] Updated endpoint list is ()
2022-04-25 09:41:11.542 Db Wapp[29537:63f2c] [com.apple.defaults:User Defaults] found no value for key crashlytics_debug_enabled in CFPrefsSearchListSource<0x600003668980> (Domain: io.invertase.firebase, Container: (null))
2022-04-25 09:41:11.542 Df Wapp[29537:63f2c] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 150] RNFBCrashlyticsInit crashlytics_debug_enabled via RNFBJSON: 1
2022-04-25 09:41:11.542 Df Wapp[29537:63f2c] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 160] RNFBCrashlyticsInit crashlytics_debug_enabled final value: 1
2022-04-25 09:41:11.542 Db Wapp[29537:63f2c] [com.apple.defaults:User Defaults] found no value for key crashlytics_auto_collection_enabled in CFPrefsSearchListSource<0x600003668980> (Domain: io.invertase.firebase, Container: (null))
2022-04-25 09:41:11.542 Db Wapp[29537:63f2c] [com.apple.defaults:User Defaults] found no value for key crashlytics_auto_collection_enabled in CFPrefsSearchListSource<0x600003668980> (Domain: io.invertase.firebase, Container: (null))
2022-04-25 09:41:11.542 Df Wapp[29537:63f2c] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 150] RNFBCrashlyticsInit crashlytics_auto_collection_enabled via RNFBJSON: 1
2022-04-25 09:41:11.543 Df Wapp[29537:63f2c] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 160] RNFBCrashlyticsInit crashlytics_auto_collection_enabled final value: 1
2022-04-25 09:41:11.543 Db Wapp[29537:63f2c] [com.apple.defaults:User Defaults] found no value for key crashlytics_is_error_generation_on_js_crash_enabled in CFPrefsSearchListSource<0x600003668980> (Domain: io.invertase.firebase, Container: (null))
2022-04-25 09:41:11.543 Df Wapp[29537:63f2c] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 150] RNFBCrashlyticsInit crashlytics_is_error_generation_on_js_crash_enabled via RNFBJSON: 1
2022-04-25 09:41:11.543 Df Wapp[29537:63f2c] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 160] RNFBCrashlyticsInit crashlytics_is_error_generation_on_js_crash_enabled final value: 1
2022-04-25 09:41:11.543 Db Wapp[29537:63f2c] [com.apple.defaults:User Defaults] found no value for key crashlytics_javascript_exception_handler_chaining_enabled in CFPrefsSearchListSource<0x600003668980> (Domain: io.invertase.firebase, Container: (null))
2022-04-25 09:41:11.543 Df Wapp[29537:63f2c] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 150] RNFBCrashlyticsInit crashlytics_javascript_exception_handler_chaining_enabled via RNFBJSON: 1
2022-04-25 09:41:11.543 Df Wapp[29537:63f2c] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 160] RNFBCrashlyticsInit crashlytics_javascript_exception_handler_chaining_enabled final value: 1
2022-04-25 09:41:11.567 I Wapp[29537:63f34] [com.apple.network:connection] nw_resolver_host_resolve_callback [C5] flags=0x2 ifindex=0 error=NoError(0) hostname=crashlyticsreports-pa.googleapis.com. addr=172.217.30.195 ttl=360
2022-04-25 09:41:11.568 Db Wapp[29537:63f34] [com.apple.network:connection] nw_endpoint_resolver_update [C5 crashlyticsreports-pa.googleapis.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] resolver is complete
2022-04-25 09:41:11.568 Df Wapp[29537:63f34] [com.apple.network:connection] nw_endpoint_resolver_update [C5 crashlyticsreports-pa.googleapis.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] Adding endpoint handler for 172.217.30.195:443
2022-04-25 09:41:11.568 Db Wapp[29537:63f34] [com.apple.network:connection] nw_endpoint_resolver_update [C5 crashlyticsreports-pa.googleapis.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] Updated endpoint list is (172.217.30.195:443)
2022-04-25 09:41:11.568 Df Wapp[29537:63f34] [com.apple.network:connection] [C5 crashlyticsreports-pa.googleapis.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] event: resolver:receive_dns @0.033s
2022-04-25 09:41:11.569 I Wapp[29537:63f34] [com.apple.network:connection] nw_endpoint_resolver_start_next_child [C5 crashlyticsreports-pa.googleapis.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] starting child endpoint 172.217.30.195:443
2022-04-25 09:41:11.569 Db Wapp[29537:63f34] [com.apple.network:connection] nw_endpoint_resolver_receive_report [C5 crashlyticsreports-pa.googleapis.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] received child report: [C5.1 172.217.30.195:443 initial path ((null))]
2022-04-25 09:41:11.569 Db Wapp[29537:63f34] [com.apple.network:connection] nw_endpoint_resolver_receive_report [C5 crashlyticsreports-pa.googleapis.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] received child report: [C5.1 172.217.30.195:443 waiting path (satisfied (Path is satisfied), interface: en0)]
2022-04-25 09:41:11.571 Db Wapp[29537:63f34] [com.apple.network:connection] nw_endpoint_resolver_receive_report [C5 crashlyticsreports-pa.googleapis.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] received child report: [C5.1 172.217.30.195:443 in_progress socket-flow (satisfied (Path is satisfied), interface: en0)]
2022-04-25 09:41:11.571 I Wapp[29537:63f34] [com.apple.network:connection] nw_endpoint_resolver_start_next_child [C5 crashlyticsreports-pa.googleapis.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] starting next child endpoint in 100ms
2022-04-25 09:41:11.596 Db Wapp[29537:63f34] [com.apple.network:connection] nw_endpoint_resolver_receive_report [C5 crashlyticsreports-pa.googleapis.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] received child report: [C5.1 172.217.30.195:443 in_progress socket-flow (satisfied (Path is satisfied), interface: en0)]
2022-04-25 09:41:11.596 Df Wapp[29537:63f34] [com.apple.network:connection] [C5 crashlyticsreports-pa.googleapis.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] event: flow:finish_transport @0.061s
2022-04-25 09:41:11.701 Db Wapp[29537:63f32] [com.apple.network:connection] nw_endpoint_resolver_receive_report [C5 crashlyticsreports-pa.googleapis.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] received child report: [C5.1 172.217.30.195:443 ready socket-flow (satisfied (Path is satisfied), interface: en0)]
2022-04-25 09:41:11.703 Df Wapp[29537:63f32] [com.apple.network:connection] [C5 crashlyticsreports-pa.googleapis.com:443 ready resolver (satisfied (Path is satisfied), interface: en0)] event: flow:finish_connect @0.168s
2022-04-25 09:41:11.704 Db Wapp[29537:63f32] [com.apple.network:connection] nw_endpoint_resolver_receive_report [C5 crashlyticsreports-pa.googleapis.com:443 ready resolver (satisfied (Path is satisfied), interface: en0)] received child report: [C5.1 172.217.30.195:443 ready socket-flow (satisfied (Path is satisfied), interface: en0)]
2022-04-25 09:41:11.705 Df Wapp[29537:63f32] [com.apple.network:connection] [C5 crashlyticsreports-pa.googleapis.com:443 ready resolver (satisfied (Path is satisfied), interface: en0)] event: flow:changed_viability @0.170s
2022-04-25 09:41:11.706 Db Wapp[29537:63f32] [com.apple.CFNetwork:Coalescing] new connection to crashlyticsreports-pa.googleapis.com config 0x600001819900
2022-04-25 09:41:13.434 Df Wapp[29537:63f32] [com.apple.network:connection] [C5 D42D568C-DE1F-4A67-98E7-38C4C9796BA9 crashlyticsreports-pa.googleapis.com:443 tcp, url hash: 229efdf0, tls, definite, attribution: developer] cancel
2022-04-25 09:41:13.434 Df Wapp[29537:63f32] [com.apple.network:connection] [C5 D42D568C-DE1F-4A67-98E7-38C4C9796BA9 crashlyticsreports-pa.googleapis.com:443 tcp, url hash: 229efdf0, tls, definite, attribution: developer] cancelled
2022-04-25 09:41:13.434 I Wapp[29537:63f32] [com.apple.network:connection] nw_endpoint_handler_cancel [C5 crashlyticsreports-pa.googleapis.com:443 ready resolver (satisfied (Path is satisfied), interface: en0)]
2022-04-25 09:41:13.434 I Wapp[29537:63f32] [com.apple.network:connection] nw_association_schedule_deactivation <nw_association crashlyticsreports-pa.googleapis.com:443> will become dormant after 10000ms of inactivity
2022-04-25 09:41:13.438 I Wapp[29537:63f32] [com.apple.network:connection] [C5 crashlyticsreports-pa.googleapis.com:443 tcp, url hash: 229efdf0, tls, definite, attribution: developer] dealloc
mike@osxvm-little:~/work/Invertase/reproductions/crashtest (main *) %
I did, looks good to me. Please note, this is an issue hijack @eranda-intervest - this is not your issue, and is likely not related to your issue, so I will hide these comments after this reply
I cloned your repo
yarn install
npx pod-install
yarn ios
xcrun simctl spawn booted log stream --level debug --style compact > ios.log
cat ios.log |grep -i crashlytics
produces this output, it looks exactly as I would expect, debug crashes are enabled. You likely have a crash report now in this test project since I restarted the app (so the report sends...)2022-04-25 09:30:48.426 Df Wapp[29280:62c40] [Firebase/Crashlytics] Version 8.15.0 2022-04-25 09:30:48.512 Db Wapp[29280:62c40] [com.apple.defaults:User Defaults] found no value for key crashlytics_debug_enabled in CFPrefsSearchListSource<0x6000024fd600> (Domain: io.invertase.firebase, Container: (null)) 2022-04-25 09:30:48.512 Df Wapp[29280:62c40] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 150] RNFBCrashlyticsInit crashlytics_debug_enabled via RNFBJSON: 1 2022-04-25 09:30:48.513 Df Wapp[29280:62c40] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 160] RNFBCrashlyticsInit crashlytics_debug_enabled final value: 1 2022-04-25 09:30:48.513 Db Wapp[29280:62c40] [com.apple.defaults:User Defaults] found no value for key crashlytics_auto_collection_enabled in CFPrefsSearchListSource<0x6000024fd600> (Domain: io.invertase.firebase, Container: (null)) 2022-04-25 09:30:48.513 Db Wapp[29280:62c40] [com.apple.defaults:User Defaults] found no value for key crashlytics_auto_collection_enabled in CFPrefsSearchListSource<0x6000024fd600> (Domain: io.invertase.firebase, Container: (null)) 2022-04-25 09:30:48.514 Df Wapp[29280:62c40] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 150] RNFBCrashlyticsInit crashlytics_auto_collection_enabled via RNFBJSON: 1 2022-04-25 09:30:48.514 Df Wapp[29280:62c40] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 160] RNFBCrashlyticsInit crashlytics_auto_collection_enabled final value: 1 2022-04-25 09:30:48.539 Df Wapp[29280:62c40] +[RNFBCrashlyticsInitProvider configureWithApp:] [Line 101] RNFBCrashlyticsInit initialization successful 2022-04-25 09:30:48.571 Df Wapp[29280:62c63] [com.apple.network:connection] [C3 E8806167-94E8-4948-9960-D6D54BA17D71 firebase-settings.crashlytics.com:443 tcp, url hash: 9a210d7f, tls, definite, attribution: developer, context: com.apple.CFNetwork.NSURLSession.{DEECE77E-F0AE-44CB-AB89-8C3A3FB4FD5F}{(null)}{Y}{2} (private), proc: FB3C3599-533A-329F-8F4B-2779F98BE5D0] start 2022-04-25 09:30:48.571 I Wapp[29280:62c63] [com.apple.network:connection] nw_endpoint_handler_start [C3 firebase-settings.crashlytics.com:443 initial path ((null))] 2022-04-25 09:30:48.577 Df Wapp[29280:62c63] [com.apple.network:connection] [C3 firebase-settings.crashlytics.com:443 initial path ((null))] event: path:start @0.005s 2022-04-25 09:30:48.579 Db Wapp[29280:62c63] [com.apple.network:connection] nw_endpoint_handler_path_change [C3 firebase-settings.crashlytics.com:443 waiting path (satisfied (Path is satisfied), interface: en0)] 2022-04-25 09:30:48.581 Df Wapp[29280:62c63] [com.apple.network:connection] [C3 firebase-settings.crashlytics.com:443 waiting path (satisfied (Path is satisfied), interface: en0)] event: path:satisfied @0.009s, uuid: B5D7CB2B-FD9E-4C5F-A434-76961A258794 2022-04-25 09:30:48.582 I Wapp[29280:62c63] [com.apple.network:connection] nw_connection_endpoint_report_on_nw_queue [C3 firebase-settings.crashlytics.com:443 waiting path (satisfied (Path is satisfied), interface: en0)] skipping state update 2022-04-25 09:30:48.583 Db Wapp[29280:62c63] [com.apple.network:] nw_endpoint_proxy_handler_should_use_proxy Looking up proxy for hostname: firebase-settings.crashlytics.com, ifindex: 0 2022-04-25 09:30:48.603 Db Wapp[29280:62c63] [com.apple.network:connection] -[NWConcrete_nw_endpoint_resolver startWithHandler:] [C3 firebase-settings.crashlytics.com:443 waiting resolver (satisfied (Path is satisfied), interface: en0)] 2022-04-25 09:30:48.603 Df Wapp[29280:62c63] [com.apple.network:connection] [C3 firebase-settings.crashlytics.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] event: resolver:start_dns @0.031s 2022-04-25 09:30:48.604 I Wapp[29280:62c63] [com.apple.network:connection] nw_resolver_create_dns_service_locked [C3] Starting host resolution firebase-settings.crashlytics.com:443, flags 0xc000d000 proto 0 2022-04-25 09:30:48.605 I Wapp[29280:62c63] [com.apple.network:connection] nw_resolver_host_resolve_callback [C3] flags=0x40000002 ifindex=0 error=NoSuchRecord(-65554) hostname=firebase-settings.crashlytics.com. addr=:: ttl=60 2022-04-25 09:30:48.608 Db Wapp[29280:62c63] [com.apple.network:connection] nw_endpoint_resolver_update [C3 firebase-settings.crashlytics.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] resolver is in_progress 2022-04-25 09:30:48.613 Db Wapp[29280:62c63] [com.apple.network:connection] nw_endpoint_resolver_update [C3 firebase-settings.crashlytics.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] Updated endpoint list is () 2022-04-25 09:30:48.684 I Wapp[29280:62cb4] [com.apple.network:connection] nw_resolver_host_resolve_callback [C3] flags=0x2 ifindex=0 error=NoError(0) hostname=firebase-settings.crashlytics.com. addr=142.250.78.99 ttl=377 2022-04-25 09:30:48.685 Db Wapp[29280:62cb4] [com.apple.network:connection] nw_endpoint_resolver_update [C3 firebase-settings.crashlytics.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] resolver is complete 2022-04-25 09:30:48.685 Df Wapp[29280:62cb4] [com.apple.network:connection] nw_endpoint_resolver_update [C3 firebase-settings.crashlytics.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] Adding endpoint handler for 142.250.78.99:443 2022-04-25 09:30:48.685 Db Wapp[29280:62cb4] [com.apple.network:connection] nw_endpoint_resolver_update [C3 firebase-settings.crashlytics.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] Updated endpoint list is (142.250.78.99:443) 2022-04-25 09:30:48.685 Df Wapp[29280:62cb4] [com.apple.network:connection] [C3 firebase-settings.crashlytics.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] event: resolver:receive_dns @0.113s 2022-04-25 09:30:48.685 I Wapp[29280:62cb4] [com.apple.network:connection] nw_endpoint_resolver_start_next_child [C3 firebase-settings.crashlytics.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] starting child endpoint 142.250.78.99:443 2022-04-25 09:30:48.685 Db Wapp[29280:62cb4] [com.apple.network:connection] nw_endpoint_resolver_receive_report [C3 firebase-settings.crashlytics.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] received child report: [C3.1 142.250.78.99:443 initial path ((null))] 2022-04-25 09:30:48.686 Db Wapp[29280:62cb4] [com.apple.network:connection] nw_endpoint_resolver_receive_report [C3 firebase-settings.crashlytics.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] received child report: [C3.1 142.250.78.99:443 waiting path (satisfied (Path is satisfied), interface: en0)] 2022-04-25 09:30:49.747 Db Wapp[29280:62cb4] [com.apple.network:connection] nw_endpoint_resolver_receive_report [C3 firebase-settings.crashlytics.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] received child report: [C3.1 142.250.78.99:443 in_progress socket-flow (satisfied (Path is satisfied), interface: en0)] 2022-04-25 09:30:49.748 I Wapp[29280:62cb4] [com.apple.network:connection] nw_endpoint_resolver_start_next_child [C3 firebase-settings.crashlytics.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] starting next child endpoint in 100ms 2022-04-25 09:30:49.781 Db Wapp[29280:62c63] [com.apple.network:connection] nw_endpoint_resolver_receive_report [C3 firebase-settings.crashlytics.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] received child report: [C3.1 142.250.78.99:443 in_progress socket-flow (satisfied (Path is satisfied), interface: en0)] 2022-04-25 09:30:49.781 Df Wapp[29280:62c63] [com.apple.network:connection] [C3 firebase-settings.crashlytics.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] event: flow:finish_transport @1.209s 2022-04-25 09:30:49.979 Db trustd[27095:629b5] [com.apple.securityd:accept] replacing non ev reject score: 0 with non ev score: 10011117 <SecCertificatePathVC certs: <cert(0x7feb8d009400) s: crashlytics.com i: GTS CA 1C3>, <cert(0x7feb8d010e00) s: GTS CA 1C3 i: GTS Root R1>, <cert(0x7feb8ba0d0f0) s: GTS Root R1 i: GTS Root R1> > 2022-04-25 09:30:49.980 Db trustd[27095:629b5] [com.apple.securityd:trust] completed: <SecCertificatePathVC certs: <cert(0x7feb8d009400) s: crashlytics.com i: GTS CA 1C3>, <cert(0x7feb8d010e00) s: GTS CA 1C3 i: GTS Root R1>, <cert(0x7feb8ba0d0f0) s: GTS Root R1 i: GTS Root R1> > details: ( 2022-04-25 09:30:49.989 Db trustd[27095:629b5] [com.apple.securityd:accept] replacing non ev reject score: 0 with non ev score: 10011117 <SecCertificatePathVC certs: <cert(0x7feb91009a00) s: crashlytics.com i: GTS CA 1C3>, <cert(0x7feb91014a00) s: GTS CA 1C3 i: GTS Root R1>, <cert(0x7feb8fb08ba0) s: GTS Root R1 i: GTS Root R1> > 2022-04-25 09:30:49.990 Db trustd[27095:629b5] [com.apple.securityd:trust] completed: <SecCertificatePathVC certs: <cert(0x7feb91009a00) s: crashlytics.com i: GTS CA 1C3>, <cert(0x7feb91014a00) s: GTS CA 1C3 i: GTS Root R1>, <cert(0x7feb8fb08ba0) s: GTS Root R1 i: GTS Root R1> > details: ( 2022-04-25 09:30:49.994 Db Wapp[29280:62c60] [com.apple.network:connection] nw_endpoint_resolver_receive_report [C3 firebase-settings.crashlytics.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] received child report: [C3.1 142.250.78.99:443 ready socket-flow (satisfied (Path is satisfied), interface: en0)] 2022-04-25 09:30:49.994 Df Wapp[29280:62c60] [com.apple.network:connection] [C3 firebase-settings.crashlytics.com:443 ready resolver (satisfied (Path is satisfied), interface: en0)] event: flow:finish_connect @1.422s 2022-04-25 09:30:49.994 Db Wapp[29280:62c60] [com.apple.network:connection] nw_endpoint_resolver_receive_report [C3 firebase-settings.crashlytics.com:443 ready resolver (satisfied (Path is satisfied), interface: en0)] received child report: [C3.1 142.250.78.99:443 ready socket-flow (satisfied (Path is satisfied), interface: en0)] 2022-04-25 09:30:49.995 Df Wapp[29280:62c60] [com.apple.network:connection] [C3 firebase-settings.crashlytics.com:443 ready resolver (satisfied (Path is satisfied), interface: en0)] event: flow:changed_viability @1.423s 2022-04-25 09:30:49.995 Db Wapp[29280:62c60] [com.apple.CFNetwork:Coalescing] new connection to firebase-settings.crashlytics.com config 0x600000ac18e0 2022-04-25 09:30:50.246 Df Wapp[29280:62c5e] [com.apple.network:connection] [C3 E8806167-94E8-4948-9960-D6D54BA17D71 firebase-settings.crashlytics.com:443 tcp, url hash: 9a210d7f, tls, definite, attribution: developer] cancel 2022-04-25 09:30:50.246 Df Wapp[29280:62c5e] [com.apple.network:connection] [C3 E8806167-94E8-4948-9960-D6D54BA17D71 firebase-settings.crashlytics.com:443 tcp, url hash: 9a210d7f, tls, definite, attribution: developer] cancelled 2022-04-25 09:30:50.246 I Wapp[29280:62c5e] [com.apple.network:connection] nw_endpoint_handler_cancel [C3 firebase-settings.crashlytics.com:443 ready resolver (satisfied (Path is satisfied), interface: en0)] 2022-04-25 09:30:50.246 I Wapp[29280:62c5e] [com.apple.network:connection] nw_association_schedule_deactivation <nw_association firebase-settings.crashlytics.com:443> will become dormant after 10000ms of inactivity 2022-04-25 09:30:50.249 I Wapp[29280:62c5e] [com.apple.network:connection] [C3 firebase-settings.crashlytics.com:443 tcp, url hash: 9a210d7f, tls, definite, attribution: developer] dealloc 2022-04-25 09:31:00.246 I Wapp[29280:62cb1] [com.apple.network:connection] nw_association_schedule_deactivation_block_invoke <nw_association firebase-settings.crashlytics.com:443> becoming dormant 2022-04-25 09:31:18.132 Db Wapp[29280:62c99] [com.apple.defaults:User Defaults] found no value for key crashlytics_debug_enabled in CFPrefsSearchListSource<0x6000024fd600> (Domain: io.invertase.firebase, Container: (null)) 2022-04-25 09:31:18.132 Df Wapp[29280:62c99] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 150] RNFBCrashlyticsInit crashlytics_debug_enabled via RNFBJSON: 1 2022-04-25 09:31:18.132 Df Wapp[29280:62c99] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 160] RNFBCrashlyticsInit crashlytics_debug_enabled final value: 1 2022-04-25 09:31:18.133 Db Wapp[29280:62c99] [com.apple.defaults:User Defaults] found no value for key crashlytics_auto_collection_enabled in CFPrefsSearchListSource<0x6000024fd600> (Domain: io.invertase.firebase, Container: (null)) 2022-04-25 09:31:18.133 Db Wapp[29280:62c99] [com.apple.defaults:User Defaults] found no value for key crashlytics_auto_collection_enabled in CFPrefsSearchListSource<0x6000024fd600> (Domain: io.invertase.firebase, Container: (null)) 2022-04-25 09:31:18.133 Df Wapp[29280:62c99] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 150] RNFBCrashlyticsInit crashlytics_auto_collection_enabled via RNFBJSON: 1 2022-04-25 09:31:18.133 Df Wapp[29280:62c99] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 160] RNFBCrashlyticsInit crashlytics_auto_collection_enabled final value: 1 2022-04-25 09:31:18.133 Db Wapp[29280:62c99] [com.apple.defaults:User Defaults] found no value for key crashlytics_is_error_generation_on_js_crash_enabled in CFPrefsSearchListSource<0x6000024fd600> (Domain: io.invertase.firebase, Container: (null)) 2022-04-25 09:31:18.133 Df Wapp[29280:62c99] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 150] RNFBCrashlyticsInit crashlytics_is_error_generation_on_js_crash_enabled via RNFBJSON: 1 2022-04-25 09:31:18.134 Df Wapp[29280:62c99] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 160] RNFBCrashlyticsInit crashlytics_is_error_generation_on_js_crash_enabled final value: 1 2022-04-25 09:31:18.134 Db Wapp[29280:62c99] [com.apple.defaults:User Defaults] found no value for key crashlytics_javascript_exception_handler_chaining_enabled in CFPrefsSearchListSource<0x6000024fd600> (Domain: io.invertase.firebase, Container: (null)) 2022-04-25 09:31:18.134 Df Wapp[29280:62c99] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 150] RNFBCrashlyticsInit crashlytics_javascript_exception_handler_chaining_enabled via RNFBJSON: 1 2022-04-25 09:31:18.134 Df Wapp[29280:62c99] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 160] RNFBCrashlyticsInit crashlytics_javascript_exception_handler_chaining_enabled final value: 1 2022-04-25 09:37:41.970 Db Wapp[29280:639fc] [com.apple.defaults:User Defaults] found no value for key crashlytics_debug_enabled in CFPrefsSearchListSource<0x6000024fd600> (Domain: io.invertase.firebase, Container: (null)) 2022-04-25 09:37:41.970 Df Wapp[29280:639fc] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 150] RNFBCrashlyticsInit crashlytics_debug_enabled via RNFBJSON: 1 2022-04-25 09:37:41.970 Df Wapp[29280:639fc] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 160] RNFBCrashlyticsInit crashlytics_debug_enabled final value: 1 2022-04-25 09:37:41.970 Db Wapp[29280:639fc] [com.apple.defaults:User Defaults] found no value for key crashlytics_auto_collection_enabled in CFPrefsSearchListSource<0x6000024fd600> (Domain: io.invertase.firebase, Container: (null)) 2022-04-25 09:37:41.970 Db Wapp[29280:639fc] [com.apple.defaults:User Defaults] found no value for key crashlytics_auto_collection_enabled in CFPrefsSearchListSource<0x6000024fd600> (Domain: io.invertase.firebase, Container: (null)) 2022-04-25 09:37:41.970 Df Wapp[29280:639fc] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 150] RNFBCrashlyticsInit crashlytics_auto_collection_enabled via RNFBJSON: 1 2022-04-25 09:37:41.970 Df Wapp[29280:639fc] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 160] RNFBCrashlyticsInit crashlytics_auto_collection_enabled final value: 1 2022-04-25 09:41:11.022 Df Wapp[29537:63f0b] [Firebase/Crashlytics] Version 8.15.0 2022-04-25 09:41:11.047 Db Wapp[29537:63f0b] [com.apple.defaults:User Defaults] found no value for key crashlytics_debug_enabled in CFPrefsSearchListSource<0x600003668980> (Domain: io.invertase.firebase, Container: (null)) 2022-04-25 09:41:11.047 Df Wapp[29537:63f0b] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 150] RNFBCrashlyticsInit crashlytics_debug_enabled via RNFBJSON: 1 2022-04-25 09:41:11.047 Df Wapp[29537:63f0b] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 160] RNFBCrashlyticsInit crashlytics_debug_enabled final value: 1 2022-04-25 09:41:11.047 Db Wapp[29537:63f0b] [com.apple.defaults:User Defaults] found no value for key crashlytics_auto_collection_enabled in CFPrefsSearchListSource<0x600003668980> (Domain: io.invertase.firebase, Container: (null)) 2022-04-25 09:41:11.047 Db Wapp[29537:63f0b] [com.apple.defaults:User Defaults] found no value for key crashlytics_auto_collection_enabled in CFPrefsSearchListSource<0x600003668980> (Domain: io.invertase.firebase, Container: (null)) 2022-04-25 09:41:11.047 Df Wapp[29537:63f0b] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 150] RNFBCrashlyticsInit crashlytics_auto_collection_enabled via RNFBJSON: 1 2022-04-25 09:41:11.048 Df Wapp[29537:63f0b] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 160] RNFBCrashlyticsInit crashlytics_auto_collection_enabled final value: 1 2022-04-25 09:41:11.048 Df Wapp[29537:63f0b] +[RNFBCrashlyticsInitProvider configureWithApp:] [Line 101] RNFBCrashlyticsInit initialization successful 2022-04-25 09:41:11.534 Df Wapp[29537:63f34] [com.apple.network:connection] [C5 D42D568C-DE1F-4A67-98E7-38C4C9796BA9 crashlyticsreports-pa.googleapis.com:443 tcp, url hash: 229efdf0, tls, definite, attribution: developer, context: com.apple.CFNetwork.NSURLSession.{364F4B2E-C57E-47D3-8018-2A303A7D8D5E}{(null)}{Y}{2} (private), proc: FB3C3599-533A-329F-8F4B-2779F98BE5D0] start 2022-04-25 09:41:11.534 I Wapp[29537:63f34] [com.apple.network:connection] nw_endpoint_handler_start [C5 crashlyticsreports-pa.googleapis.com:443 initial path ((null))] 2022-04-25 09:41:11.535 Df Wapp[29537:63f34] [com.apple.network:connection] [C5 crashlyticsreports-pa.googleapis.com:443 initial path ((null))] event: path:start @0.000s 2022-04-25 09:41:11.535 Db Wapp[29537:63f34] [com.apple.network:connection] nw_endpoint_handler_path_change [C5 crashlyticsreports-pa.googleapis.com:443 waiting path (satisfied (Path is satisfied), interface: en0)] 2022-04-25 09:41:11.535 Df Wapp[29537:63f34] [com.apple.network:connection] [C5 crashlyticsreports-pa.googleapis.com:443 waiting path (satisfied (Path is satisfied), interface: en0)] event: path:satisfied @0.000s, uuid: E1D5D7E3-4629-4DF0-9A68-89542F4A8E31 2022-04-25 09:41:11.535 I Wapp[29537:63f34] [com.apple.network:connection] nw_connection_endpoint_report_on_nw_queue [C5 crashlyticsreports-pa.googleapis.com:443 waiting path (satisfied (Path is satisfied), interface: en0)] skipping state update 2022-04-25 09:41:11.535 Db Wapp[29537:63f34] [com.apple.network:] nw_endpoint_proxy_handler_should_use_proxy Looking up proxy for hostname: crashlyticsreports-pa.googleapis.com, ifindex: 0 2022-04-25 09:41:11.536 Db Wapp[29537:63f34] [com.apple.network:connection] -[NWConcrete_nw_endpoint_resolver startWithHandler:] [C5 crashlyticsreports-pa.googleapis.com:443 waiting resolver (satisfied (Path is satisfied), interface: en0)] 2022-04-25 09:41:11.536 Df Wapp[29537:63f34] [com.apple.network:connection] [C5 crashlyticsreports-pa.googleapis.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] event: resolver:start_dns @0.001s 2022-04-25 09:41:11.537 I Wapp[29537:63f34] [com.apple.network:connection] nw_resolver_create_dns_service_locked [C5] Starting host resolution crashlyticsreports-pa.googleapis.com:443, flags 0xc000d000 proto 0 2022-04-25 09:41:11.537 I Wapp[29537:63f34] [com.apple.network:connection] nw_resolver_host_resolve_callback [C5] flags=0x40000002 ifindex=0 error=NoSuchRecord(-65554) hostname=crashlyticsreports-pa.googleapis.com. addr=:: ttl=60 2022-04-25 09:41:11.537 Db Wapp[29537:63f34] [com.apple.network:connection] nw_endpoint_resolver_update [C5 crashlyticsreports-pa.googleapis.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] resolver is in_progress 2022-04-25 09:41:11.537 Db Wapp[29537:63f34] [com.apple.network:connection] nw_endpoint_resolver_update [C5 crashlyticsreports-pa.googleapis.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] Updated endpoint list is () 2022-04-25 09:41:11.542 Db Wapp[29537:63f2c] [com.apple.defaults:User Defaults] found no value for key crashlytics_debug_enabled in CFPrefsSearchListSource<0x600003668980> (Domain: io.invertase.firebase, Container: (null)) 2022-04-25 09:41:11.542 Df Wapp[29537:63f2c] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 150] RNFBCrashlyticsInit crashlytics_debug_enabled via RNFBJSON: 1 2022-04-25 09:41:11.542 Df Wapp[29537:63f2c] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 160] RNFBCrashlyticsInit crashlytics_debug_enabled final value: 1 2022-04-25 09:41:11.542 Db Wapp[29537:63f2c] [com.apple.defaults:User Defaults] found no value for key crashlytics_auto_collection_enabled in CFPrefsSearchListSource<0x600003668980> (Domain: io.invertase.firebase, Container: (null)) 2022-04-25 09:41:11.542 Db Wapp[29537:63f2c] [com.apple.defaults:User Defaults] found no value for key crashlytics_auto_collection_enabled in CFPrefsSearchListSource<0x600003668980> (Domain: io.invertase.firebase, Container: (null)) 2022-04-25 09:41:11.542 Df Wapp[29537:63f2c] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 150] RNFBCrashlyticsInit crashlytics_auto_collection_enabled via RNFBJSON: 1 2022-04-25 09:41:11.543 Df Wapp[29537:63f2c] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 160] RNFBCrashlyticsInit crashlytics_auto_collection_enabled final value: 1 2022-04-25 09:41:11.543 Db Wapp[29537:63f2c] [com.apple.defaults:User Defaults] found no value for key crashlytics_is_error_generation_on_js_crash_enabled in CFPrefsSearchListSource<0x600003668980> (Domain: io.invertase.firebase, Container: (null)) 2022-04-25 09:41:11.543 Df Wapp[29537:63f2c] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 150] RNFBCrashlyticsInit crashlytics_is_error_generation_on_js_crash_enabled via RNFBJSON: 1 2022-04-25 09:41:11.543 Df Wapp[29537:63f2c] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 160] RNFBCrashlyticsInit crashlytics_is_error_generation_on_js_crash_enabled final value: 1 2022-04-25 09:41:11.543 Db Wapp[29537:63f2c] [com.apple.defaults:User Defaults] found no value for key crashlytics_javascript_exception_handler_chaining_enabled in CFPrefsSearchListSource<0x600003668980> (Domain: io.invertase.firebase, Container: (null)) 2022-04-25 09:41:11.543 Df Wapp[29537:63f2c] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 150] RNFBCrashlyticsInit crashlytics_javascript_exception_handler_chaining_enabled via RNFBJSON: 1 2022-04-25 09:41:11.543 Df Wapp[29537:63f2c] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 160] RNFBCrashlyticsInit crashlytics_javascript_exception_handler_chaining_enabled final value: 1 2022-04-25 09:41:11.567 I Wapp[29537:63f34] [com.apple.network:connection] nw_resolver_host_resolve_callback [C5] flags=0x2 ifindex=0 error=NoError(0) hostname=crashlyticsreports-pa.googleapis.com. addr=172.217.30.195 ttl=360 2022-04-25 09:41:11.568 Db Wapp[29537:63f34] [com.apple.network:connection] nw_endpoint_resolver_update [C5 crashlyticsreports-pa.googleapis.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] resolver is complete 2022-04-25 09:41:11.568 Df Wapp[29537:63f34] [com.apple.network:connection] nw_endpoint_resolver_update [C5 crashlyticsreports-pa.googleapis.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] Adding endpoint handler for 172.217.30.195:443 2022-04-25 09:41:11.568 Db Wapp[29537:63f34] [com.apple.network:connection] nw_endpoint_resolver_update [C5 crashlyticsreports-pa.googleapis.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] Updated endpoint list is (172.217.30.195:443) 2022-04-25 09:41:11.568 Df Wapp[29537:63f34] [com.apple.network:connection] [C5 crashlyticsreports-pa.googleapis.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] event: resolver:receive_dns @0.033s 2022-04-25 09:41:11.569 I Wapp[29537:63f34] [com.apple.network:connection] nw_endpoint_resolver_start_next_child [C5 crashlyticsreports-pa.googleapis.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] starting child endpoint 172.217.30.195:443 2022-04-25 09:41:11.569 Db Wapp[29537:63f34] [com.apple.network:connection] nw_endpoint_resolver_receive_report [C5 crashlyticsreports-pa.googleapis.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] received child report: [C5.1 172.217.30.195:443 initial path ((null))] 2022-04-25 09:41:11.569 Db Wapp[29537:63f34] [com.apple.network:connection] nw_endpoint_resolver_receive_report [C5 crashlyticsreports-pa.googleapis.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] received child report: [C5.1 172.217.30.195:443 waiting path (satisfied (Path is satisfied), interface: en0)] 2022-04-25 09:41:11.571 Db Wapp[29537:63f34] [com.apple.network:connection] nw_endpoint_resolver_receive_report [C5 crashlyticsreports-pa.googleapis.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] received child report: [C5.1 172.217.30.195:443 in_progress socket-flow (satisfied (Path is satisfied), interface: en0)] 2022-04-25 09:41:11.571 I Wapp[29537:63f34] [com.apple.network:connection] nw_endpoint_resolver_start_next_child [C5 crashlyticsreports-pa.googleapis.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] starting next child endpoint in 100ms 2022-04-25 09:41:11.596 Db Wapp[29537:63f34] [com.apple.network:connection] nw_endpoint_resolver_receive_report [C5 crashlyticsreports-pa.googleapis.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] received child report: [C5.1 172.217.30.195:443 in_progress socket-flow (satisfied (Path is satisfied), interface: en0)] 2022-04-25 09:41:11.596 Df Wapp[29537:63f34] [com.apple.network:connection] [C5 crashlyticsreports-pa.googleapis.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] event: flow:finish_transport @0.061s 2022-04-25 09:41:11.701 Db Wapp[29537:63f32] [com.apple.network:connection] nw_endpoint_resolver_receive_report [C5 crashlyticsreports-pa.googleapis.com:443 in_progress resolver (satisfied (Path is satisfied), interface: en0)] received child report: [C5.1 172.217.30.195:443 ready socket-flow (satisfied (Path is satisfied), interface: en0)] 2022-04-25 09:41:11.703 Df Wapp[29537:63f32] [com.apple.network:connection] [C5 crashlyticsreports-pa.googleapis.com:443 ready resolver (satisfied (Path is satisfied), interface: en0)] event: flow:finish_connect @0.168s 2022-04-25 09:41:11.704 Db Wapp[29537:63f32] [com.apple.network:connection] nw_endpoint_resolver_receive_report [C5 crashlyticsreports-pa.googleapis.com:443 ready resolver (satisfied (Path is satisfied), interface: en0)] received child report: [C5.1 172.217.30.195:443 ready socket-flow (satisfied (Path is satisfied), interface: en0)] 2022-04-25 09:41:11.705 Df Wapp[29537:63f32] [com.apple.network:connection] [C5 crashlyticsreports-pa.googleapis.com:443 ready resolver (satisfied (Path is satisfied), interface: en0)] event: flow:changed_viability @0.170s 2022-04-25 09:41:11.706 Db Wapp[29537:63f32] [com.apple.CFNetwork:Coalescing] new connection to crashlyticsreports-pa.googleapis.com config 0x600001819900 2022-04-25 09:41:13.434 Df Wapp[29537:63f32] [com.apple.network:connection] [C5 D42D568C-DE1F-4A67-98E7-38C4C9796BA9 crashlyticsreports-pa.googleapis.com:443 tcp, url hash: 229efdf0, tls, definite, attribution: developer] cancel 2022-04-25 09:41:13.434 Df Wapp[29537:63f32] [com.apple.network:connection] [C5 D42D568C-DE1F-4A67-98E7-38C4C9796BA9 crashlyticsreports-pa.googleapis.com:443 tcp, url hash: 229efdf0, tls, definite, attribution: developer] cancelled 2022-04-25 09:41:13.434 I Wapp[29537:63f32] [com.apple.network:connection] nw_endpoint_handler_cancel [C5 crashlyticsreports-pa.googleapis.com:443 ready resolver (satisfied (Path is satisfied), interface: en0)] 2022-04-25 09:41:13.434 I Wapp[29537:63f32] [com.apple.network:connection] nw_association_schedule_deactivation <nw_association crashlyticsreports-pa.googleapis.com:443> will become dormant after 10000ms of inactivity 2022-04-25 09:41:13.438 I Wapp[29537:63f32] [com.apple.network:connection] [C5 crashlyticsreports-pa.googleapis.com:443 tcp, url hash: 229efdf0, tls, definite, attribution: developer] dealloc mike@osxvm-little:~/work/Invertase/reproductions/crashtest (main *) %
i followed ur steps in my project but still i'm getting these logs
2022-04-25 20:56:50.803 Db Wapp[78606:6bed6] [com.apple.defaults:User Defaults] found no value for key crashlytics_debug_enabled in CFPrefsSearchListSource<0x6000011a6f80> (Domain: io.invertase.firebase, Container: (null)) 2022-04-25 20:56:50.804 Df Wapp[78606:6bed6] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 157] RNFBCrashlyticsInit crashlytics_debug_enabled via RNFBMeta: 0 2022-04-25 20:56:50.804 Df Wapp[78606:6bed6] +[RNFBSharedUtils getConfigBooleanValue:key:defaultValue:] [Line 160] RNFBCrashlyticsInit crashlytics_debug_enabled final value: 0 2022-04-25 20:56:50.804 Df Wapp[78606:6bed6] +[RNFBCrashlyticsInitProvider isCrashlyticsCollectionEnabled] [Line 49] RNFBCrashlyticsInit isCrashlyticsCollectionEnabled after checking crashlytics_debug_enabled: 0
no crashes recording.. please help me to solve this.. Node v - v16.14.2 npm v - 8.5.0
@eranda-intervest I have literally cloned your test repo and run it and pasted my results. I cannot reproduce your problem. Something is wrong in your local environment, no idea what but there is nothing further I can do until I have a reproduction. I do not have a reproduction.