Can't delete node in Firebase Database Console Bug - firebase-realtime-database

I am trying to delete a node in Firebase console, but for some reason it is not being deleted. Please see video. https://youtu.be/jHHg8P6FOTI

Related

Firebase Realtime on iOS: Cannot access Realtime Database

I am getting the following error:
[Firebase/Database][I-RDB034005] Firebase Database connection was forcefully killed by the server. Will not attempt reconnect. Reason: Firebase error. Please ensure that you spelled the name of your Firebase correctly
Permissions on admin console are set .read and .write to false
I understand the error. when I run the following command and print the value of variable:
Database.database().reference()
I get (cant edit it):
https://bananas-31fe5-default-rtdb.firebaseio.com
And on admin console I have (cant edit it):
https://bananas-31fe5-default-rtdb.europe-west1.firebasedatabase.app
On admin console, I tried creating a new database (and disabling the primary one) on the US, but the one on xcode doesnt seem to change.
My gut feeling is this has to do with the pod library not being updated to enable multiple db location (EU is in beta).
firebaser here
For non-US-central databases the SDK may not be able to read the information from the plist file, so you have to pass it in the code.
You can pass the database URL into the call to database, like:
Database.database("https://bananas-31fe5-default-rtdb.europe-west1.firebasedatabase.app").reference()
See docs for that method override.
When you create a realtime database for the first time, DATABASE_URL is added to your GoogleService-Info.plist file on the server side. You may be getting an error because the GoogleService-Info.plist is outdated and does not contain DATABASE_URL. You can download your updated GoogleService-Info.plist file from your Project Settings and try again.
I hope it helped

CloudKit Dashboard logs history and live EMPTY

Whenever I enter the CloudKit and check the logs in the development database I can see NO EVENTS at all. Neither in history or live events.
Although I can see on telemetrics that records have been created, modified, deleted and even some conflicts have occurred.
Do I have to enable something actively to send logs? or they should be showing up by default?
Thank you very much.

BigQuery not showing any dataset for a linked Firebase Analytics Event logs

I linked my account to Big Query but Firebase Analytics events are not getting loaded into BigQuery automatically.
"No dataset found" warning is shown.
My work progress was attached below please find.
I have getting firebase Analytics event log in debugView console. for your reference
Link Big Query with my application
"No dataset found in this project" warning is shown in Big Query Web UI
i have added the FireBase event log code in my application button onClick.
Not sure what other steps i need to be get the FireBase Analytics Event logs in Big Query Dataset. Please guide me. Thanks

My iOS app does not appear on Firebase dashboard

My app is live on the App Store and there are no crashes on the front end however when I log in to Firebase I cannot find it on the dashboard. I tried copy & pasting the database URL but I got the message saying that there was an error making the request and that I should try again later. Has anyone else encountered this issue and could advise me on who to contact to resolve it?
According to the Firebase Status Dashboard, there should be no issues with the Realtime Database at the moment.
Assuming that your app was associated with your Firebase account previously and just suddenly disappeared, I have not heard of/ encountered anything similar in the past.
One thing to try is to make sure you are logged into the correct account and have selected the correct project.
Since accessing the database directly through its URL says to try again later, this might be a temporary problem that is resolved shortly.
However to make sure, your best option at this point is probably to reach out to Firebase support directly using this form (requires sign-in).

How do i customize my root reference?

I am fairly new to Firebase and i have just finished adding Firebase authentication to my app. Now, i want to move to the next step which is to save a users account information on the database. I am confused where it come to creating my root reference. Say for example, i want my app's root Reference to be:
Firebase rootRef = new Firebase("<My-URL>/android/apps/")
How do i add the sub-directories /android/apps/ to my database so that it shows on the firebase console?
The database page on the firebase console is still very confusing to me, please below is a screen shot of my console. I have marked two places in red. Please can somebody tell me the uses of these places.
Screen shot of firebase console

Resources