We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I was not able to reproduce the issue on test-app where auth example works properly on desktop.
Issue occurs only on Desktop when using c++ wrapper on Windows (Android and iOS works fine)
I'm following general FirebaseApp creation:
m_App = firebase::App::Create();
later on when i try to get Auth by calling this code: (from the same thread)
firebase::App* app = FirebaseApp::Get(); if (!app) return nullptr; firebase::auth::Auth* auth = firebase::auth::Auth::GetAuth(app); if (!auth) return nullptr; return auth;
I'm getting hard crash with assert from auth.cc line 119
If I try to create auth immediately after creating app i will get a proper object but then calling eg.:
firebase::Future<firebase::auth::AuthResult> result = auth->SignInAnonymously();
Result in exact same assert.
Can you please assist what may be the cause? Is there some kind of releasing object under the hood?
The text was updated successfully, but these errors were encountered:
I found a few problems with this issue:
Sorry, something went wrong.
No branches or pull requests
[REQUIRED] Please fill in the following fields:
[REQUIRED] Please describe the question here:
I was not able to reproduce the issue on test-app where auth example works properly on desktop.
Issue occurs only on Desktop when using c++ wrapper on Windows (Android and iOS works fine)
I'm following general FirebaseApp creation:
m_App = firebase::App::Create();
later on when i try to get Auth by calling this code: (from the same thread)
I'm getting hard crash with assert from auth.cc line 119
If I try to create auth immediately after creating app i will get a proper object but then calling eg.:
firebase::Future<firebase::auth::AuthResult> result = auth->SignInAnonymously();
Result in exact same assert.
Can you please assist what may be the cause? Is there some kind of releasing object under the hood?
The text was updated successfully, but these errors were encountered: