I want to sign out the user (using Firebase) when the app is deleted so the user is not already logged in when the app is reinstalled. Is there a way to achieve this?
4
-
1Are you saying the user is still signed in when you restart the app? If that is the case, it'd help to know on what platform you're seeing this.Frank van Puffelen– Frank van Puffelen2020-03-06 14:20:22 +00:00Commented Mar 6, 2020 at 14:20
-
Exactly, the user is still signed in when the app is reinstalled and launched for the first time. I'm using Flutter and I would like to implement this for both iOs and Android.Juju– Juju2020-03-06 14:50:37 +00:00Commented Mar 6, 2020 at 14:50
-
1On iOS this is expected behavior, as the user information is stored in the iOS keychain. Here's one older answer I could quickly find about it: stackoverflow.com/questions/40733262/…. More results here: stackoverflow.com/…Frank van Puffelen– Frank van Puffelen2020-03-06 15:06:33 +00:00Commented Mar 6, 2020 at 15:06
-
No way to directly implement this in my flutter project?Juju– Juju2020-03-06 15:41:03 +00:00Commented Mar 6, 2020 at 15:41
Add a comment
|