Replies: 56 comments 11 replies
-
Here is the debug console output: Over Wifi - When the error happens
Over LTE - When things work fine
|
Beta Was this translation helpful? Give feedback.
-
I highly doubt this is an issue with FlutterFire, since it has no impact on how the native SDKs handle online/offline state. |
Beta Was this translation helpful? Give feedback.
-
Hi @mlemos flutter doctor -v
Thank you |
Beta Was this translation helpful? Give feedback.
-
I am also facing the similar issue, in my case, it reaches to the cloud_firestore but returns null in _data with real iOS device when connected to WiFi. |
Beta Was this translation helpful? Give feedback.
-
HI @TahaTesser , I just performed a "reset to factory defaults" on my Pixel 3XL and the problem persisted. It happens on both my Pixel 4XL and Pixel 3XL. I'll grab another device today and perform more testing. What is interesting is that both Firestore and Crashlytics provide error messages while running over wifi. It seems that the firebase plugin is not correctly identifying the connectivity status and is assuming that it is not connected over wifi in those circumstances. Probably a shared code between Crashlytics and Firestore causing the error on both packages. Crashlytics error:
Firestore Error:
|
Beta Was this translation helpful? Give feedback.
-
Hi @TahaTesser, I finally put my hands in another device and the results were the same. I have also updated my Flutter environment and all libraries. The key error messages are:
Flutter Doctor -v is:
|
Beta Was this translation helpful? Give feedback.
-
Strangely, now the tests are like this:
All of them using the same Wifi and same 3G network. |
Beta Was this translation helpful? Give feedback.
-
@mlemos Are you able to access the firestore hostname from a browser on the devices that are not working? |
Beta Was this translation helpful? Give feedback.
-
For me I have 1 Mi-A2(Android Phone) and 1 iPhoneXR here are the test results.
So I have a bit different configuration of WiFi. Wifi 1 = Main Wifi given by the service provider (with DHCP enable) So when I connect my iPhoneXR on Wifi 2 it start throwing the exception mentioned. But I connect to Wifi 1 it works perfectly. If I disable the DHCP of wifi 2 and use it as a switch and keep the DHCP enable of Wifi 1 then also it works perfectly. So I think there is some issue with dynamic IP and network connection and that's why it is causing the exception(Thinking loud) I hope this will help to resolve this issue. |
Beta Was this translation helpful? Give feedback.
-
I am facing a similar issue. any solution so far I got a new broadband connection yesterday and saw a few firebase package update in the package.json. Could these be related? |
Beta Was this translation helpful? Give feedback.
-
hi, I am also facing the same issue, for me it doesn't work on Airtel 4G network but it works on Idea 4G network, though both are good network providers, also I tested on WIFI, it works fine, I get same results across the devices. Please help |
Beta Was this translation helpful? Give feedback.
-
I have the same issue, doesn't work my device Redmi Note 8 Pro - on Airtel 4G but works on Airtel 2G and also on Wifi (Airtel Broadband). |
Beta Was this translation helpful? Give feedback.
-
FlutterFire just sends some data from Dart, which hits the native Firebase SDKs, and sends the data back once they return some data. There isn't anything to debug on our end since it's a Firebase/SDK/location problem. Have you raised a ticket directly with Firebase? |
Beta Was this translation helpful? Give feedback.
-
Hi All, after trying many different approaches to this error I was not able to systematically reproduce it. The networks are very very similar, same ISP, same configurations, same hardware, and I was not able to identify any differences between them that could be linked to the error. On my side, I quit trying to solve the issue. However, there is definitely something here... and we need a better way to understand such basic and critical issues like network issues with Flutter and Firebase as those are key for reliability in the apps being developed. |
Beta Was this translation helpful? Give feedback.
-
Hello! I am also facing the same issue here with Crashlytics. Using a physical tablet (ProDVX 22") Crashlytics does not initialise correctly with the error:
But with the emulator it works fine:
Both are on the same Wifi network. Running the exact same app. Going to the settings URL displayed in the log is working fine on the tablet with Chrome and also on my laptop. And the result is displayed in less than 1 second. Official Google/Firebase support ask me to fill the issue here, since they don't address Firebase/Flutter related API. |
Beta Was this translation helpful? Give feedback.
-
Anybody had a solution for this problem? |
Beta Was this translation helpful? Give feedback.
-
Completely unable to access my project backend via Lan but able via 4g on mobile. identical error. |
Beta Was this translation helpful? Give feedback.
-
I am having the same issue. Does anyone get any solution? |
Beta Was this translation helpful? Give feedback.
-
Hi, I am also facing the issue. How can´t this critical issue still not be solved? |
Beta Was this translation helpful? Give feedback.
-
This is not a fix but disabling and enabling wifi or mobile data after opening the app is working for me, |
Beta Was this translation helpful? Give feedback.
-
Just to contribute to the list of really weird behaviors: in our case we switched from Ethernet to WIFI (yes, on my computer, I'm not referring to the emulator) and it started working. This is truly insane. |
Beta Was this translation helpful? Give feedback.
-
Emulator version 31.3.11 solved my problem. |
Beta Was this translation helpful? Give feedback.
-
on a windows machine, i've just updated to the latest emulator version, and then after the app launches, i disabled and re-enabled wifi and it started to work. I think the main cause of the problem is that firestore cannot connect to the device initially, but after switching on and off the connection, it forces the plugin to reconnect |
Beta Was this translation helpful? Give feedback.
-
check do you have multidex support or vpn turnded on on your device |
Beta Was this translation helpful? Give feedback.
-
Master @Ehesp and Master @Salakar are absolutely right, this is not related to Flutter. I tested this on native Android (Java) and there I get the same error. Few more outcomes:
The sad part is, here and there we are some ~100 people discussing this matter, but hardly a few would have contacted Firebase support team (needless to say I did). In fact take a look at the upvotes (though they won't mater now) on the issues, not even 20% people upvoted it. But almost everyone comes to write a comment "I'm also facing this issue". Guys, your comment won't help but an upvote will. |
Beta Was this translation helpful? Give feedback.
-
I have the same problem when connecting with VPN |
Beta Was this translation helpful? Give feedback.
-
I have this problem on certain connections to a specific device. But on other devices it works as expected; This only appears in one. Is there any workaround for this? |
Beta Was this translation helpful? Give feedback.
-
Im experiencing the same error. |
Beta Was this translation helpful? Give feedback.
-
I also have the same problem, but I only noticed this problem after activating AppCheck Play Integrity on Android. I made a video. When I try to log in via email or Google, it keeps loading forever or when I go to get data from firestore, but when I turn off Wifi and go to 4g on my operator's network, it logs in normally. In the video I will pull data from the firestore with the Wifi connected, but it only keeps loading, as soon as I turn off the wifi it gets the information. bug.firebase.wifi.mp4My Device is Samsung S21 Fe 5G with Android 13. |
Beta Was this translation helpful? Give feedback.
-
Describe the bug
When trying to get a document from Firestore, if the device is connected through Wifi the connection fails with the following error message:
To Reproduce
Usually, the error happens when running in a Physical device.
I created a small app to be able to reproduce the errors with minimal interference from the rest my code. See the code below.
When you hit run on the debugger (I'm using VSCode) and then I click on the (+) button to make the request to Firestore, it stays trying for a few seconds (you'll see the progress indicator no the test app) and then the call
snapshot = await docRef.get()
fails with the following error message:Then, if you turn the wifi off, the request works perfectly. And the content of the document retrieved from Firestore is present in the screen:
Now if you turn the wifi again, the request works. Sometimes the data is retrieved from the server and other from the cache.
Expected behavior
Since the device has perfect connectivity over wifi, it was excepted that the request worked fine and the document was retrieved from the server.
Additional context
On the emulator, everything works perfectly.
I tested in the following emulator configurations: Pixel 4 API 29, Pixel 5 API 25, Pixel 3 API 29.
The physical devices I used to test (both failed identically) where: Pixel 4XL (Android 10 QQ3Q.200605.001) and Pixel 3XL (Android 10 QQ2A.200305.002).
Flutter doctor
pubspec.yaml
/build.gradle
/app/build.gradle
Beta Was this translation helpful? Give feedback.
All reactions