createUserWithEmailAndPassword of react-native-firebase/auth is taking ~5 mins to create an account #7023
Unanswered
sachin3072004
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
Uh oh!
There was an error while loading. Please reload this page.
-
Hello Everyone,
createUserWithEmailAndPassword is taking 4-5 mins on a real Android device. I am using Pixel 4 with Android version 13. While on real iPhone, android simulator, and iPhone simulator, createUserWithEmailAndPassword creates an account on Firebase in 1-2 secs. Following are the package versions.
I am using the following code to create an account.
const App = () => {
const signin = async () => {
console.log('Signin Start = ', Date.now());
await auth().createUserWithEmailAndPassword(
'[email protected]',
'SuperSecretPassword!',
);
console.log('Signin Done =', Date.now());
};
return (
<Button onPress={() => signin()} title="Learn More" color="#841584" />
);
};
Is anyone else seeing this issue?
Beta Was this translation helpful? Give feedback.
All reactions