You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 7, 2021. It is now read-only.
In android , after google authentication rather than opening the same page , it restarts the app and reaches my app's landing page. Due to this i am getting a possibly unhandled promise warning.
I am not getting the expected response
The text was updated successfully, but these errors were encountered:
I encountered the same problem, even when I changed it to other auth method like Twitter. It turned out that there should be additional config android:launchMode="singleTask" in AndroidManifest.xml
<application
android:name=".MainApplication"
android:allowBackup="true"
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:launchMode="singleTask" <--- This guy right here
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
android:windowSoftInputMode="adjustResize">
...
...
</application>
I encountered the same problem, even when I changed it to other auth method like Twitter. It turned out that there should be additional config android:launchMode="singleTask" in AndroidManifest.xml
<application
android:name=".MainApplication"
android:allowBackup="true"
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:launchMode="singleTask" <--- This guy right here
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
android:windowSoftInputMode="adjustResize">
...
...
</application>
Hope it helps
Same problem, Doesn't work for me...
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
In android , after google authentication rather than opening the same page , it restarts the app and reaches my app's landing page. Due to this i am getting a possibly unhandled promise warning.
I am not getting the expected response
The text was updated successfully, but these errors were encountered: