Replies: 1 comment 1 reply
-
You can set skipNativeAuth individually for each call: const createUserWithEmailAndPassword = async () => {
await FirebaseAuthentication.createUserWithEmailAndPassword({
skipNativeAuth: false,
...
});
}; Why don't you use the Firebase SDK directly for this call? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
We are considering adding
createUserWithEmailAndPassword
andsignInWithEmailAndPassword
to our Capacitor app on top of our social provider logins, but we currently haveskipNativeAuth=true
just so that we can use JS SDK to access Firestore, etc.It appears that to use email/password sign-in method,
skipNativeAuth
must befalse
, which means we probably can no longer use Firebase JS SDK, which also means we will probably want to usecapawesome/firestore
plugin also. Is that correct?Is there any workaround for this, since we would rather prefer to keep using Firebase JS SDK for accessing Firestore.
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions