I'm using chrome custom tabs to login with strava
.
I'm able to authorise the app, but the chrome custom tabs is not redirecting back to my app on reaching redirection.
<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:host="sample.example.com"
android:pathPrefix="/"
android:scheme="http" />
</intent-filter>
How can I redirect back to app when chrome custom tabs goes to redirect the URI?