Page: /lib/auth/social/q/platform/[platform]
Feedback:
'Redirect URIs' section.
"Set the launchMode of MainActivity to singleTask" says the instruction while AndroidManifest.xml code example has
<activity
android:name=".MainActivity"
android:launchMode="singleInstance">
- singleInstance > singleTask maybe!
should be:
<application>
<activity
android:name=".MainActivity"
android:launchMode="singleTask">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="myapp" />
</intent-filter>
</activity>
</application>