Hi all, I'm trying svelte+capaitor+supabase. So far everything is excellent, however I'm having difficulty with the google provider signin on android.
### successes
On my web app, the following code redirects to google and then back again. All is good.
### fails
On the Android it opens up a browser tab (left my app) and redirects to the web app still in the browser and my app remain without being signed in.
Can anyone point my in the right direction for my app not to open a web browser and instead remain in the capacitor app.
javascript
const { user, session, error } = await supabase.auth.signIn({provider: 'google'});
Kind regards,
Joe