1

I need to redirect to my custom scheme (my app) after OAuth2 authentication. What I did before is success by follow the previous solution

But the problem happened again after updating the chrome browser in the android. I ask my friend who do not update the android chrome, and it works fine such that he is using my application. Does any one meet the same problem? What's wrong about the chrome 4.2 version 53.0.278.124)?

Community
  • 1
  • 1
Ho Yin Man
  • 21
  • 3

1 Answers1

1

After my investigation, I change the launchemode to singleinstnace and it works.

    <activity android:name=".MainActivity"
        android:theme="@style/AppTheme"
        android:screenOrientation="portrait"
        android:launchMode="singleInstance">
Ho Yin Man
  • 21
  • 3