oktadev/schematics

Capacitor 3 Sign out issue

exomc opened this issue · 0 comments

exomc commented

Login and refresh work fine but on signout I get this error:

E/Capacitor: JavaScript Error: "No Activity found to handle Intent { act=android.intent.action.VIEW dat=undefined?id_token_hint=eyJhbGciOiJSUzI1...&post_logout_redirect_uri=com.local.app://logout&state=XCRqxoqFth pkg=com.android.chrome (has extras) }\"}"}}

I have the intent in AndroidManifest.xml required by capacitor app plugin

<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="@string/custom_url_scheme" />
</intent-filter>