Reputation: 293
I am using firebase with my android and iOS app. My android app got removed from play store once (had to be 18+, it was 16+, don't know why they deleted it, its a joke app and no nudity or brutality is shown :D). Now many users have the old version which will receive no updates anymore. We managed to get many users to change to the new app (uploaded with different package name, everything else is the same)
I want to remove the old version from firebase. It uses old code and will not receive updates.
QUESTION If I remove the old app from the project, will users still be able to connect to my firebase? My hope is that they won't be able and will remove the old app (and maybe look up the new one as a reaction) Will it make anything unexpected? I did not find anything about it despite that I lose the analytics.
As I cannot update the old app there is probably no other way to remove it.
Upvotes: 0
Views: 74
Reputation: 598797
To connect to the Realtime Database from an Android or iOS app, all the app needs to know if the URL of that Realtime Database. So no matter if there's an app registration in the Firebase project or not, if the code has the right URL it can connect.
Upvotes: 1