How do I keep firebase auth data separate between my debug builds and production builds? #12422
Unanswered
BirjuVachhani
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I work on an app that works on macos. I know that firebase auth uses keychain to store auth. I also use my own published app (the same app but stable and published) daily. The problem is when I run my app in debug mode, it uses data from the same keychain as production and auto logs me in.
I have separate configuration for storing local data in different place for debug mode so it causes conflicts because the firebase auth user is the same but the local storage location of the app is different. (e.g. I use hive and store local data in a different directory for debug mode).
How do I make it so the app running in debug mode doesn't use the same keychain store and and auto log me in? I want to keep the production app and debug app data separate.
Beta Was this translation helpful? Give feedback.
All reactions