I just deleted my app from firebase console , but it is still working and changing data in the realtime database

324

Solution 1

Access to the realtime database is not limited to apps that are registered in the Firebase console. Any code that has the proper configuration for your database, can try to access that database. If you want to be more selective in who can access the database, you will need to do this with Firebase's server-side security rules, typically in combination with Firebase Authentication.

Solution 2

According to Firebase documentation, when you delete an app:

Corresponding API keys or OAuth clients are NOT deleted. You can clean up the API keys or OAuth clients in the Google APIs console credentials page. Deleting these resources will break installed applications: your users will no longer be able to authenticate or sign in.

Share:
324
Jagraj Singh
Author by

Jagraj Singh

Knowledge Seeker. Bachelors of Technology in Computer Science. Also a freelance Software Developer. ♥️ 3D Printing and Internet of Things ♥️

Updated on December 08, 2022

Comments

  • Jagraj Singh
    Jagraj Singh over 1 year

    I just deleted my flutter app from firebase console , but it is still working and changing data in the realtime database. Can anyone tell me how its still connected with the firebase?

    Thanks