Skip to content

[Feedback] Error with code block for Android example, Redirect URI's section #4832

@timurxyz

Description

@timurxyz

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>

Metadata

Metadata

Assignees

Labels

amplify/jsIssues tied to JSp2incorrect info. ie a bug

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions