Beta Version 0.3.0
Setup will now require a LinkRedirectActivity
with an intent filter with a custom scheme. The intent filter must be registered on your dashboard.
<activity android:name="com.plaid.link.redirect.LinkRedirectActivity">
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<!-- A custom scheme unique to your app with a unique host. -->
<data
android:host="redirect"
android:scheme="yourAppName" />
</intent-filter>
</activity>
You will also need to pass the uri in via the LinkConfiguration
object as a webviewRedirectUri
String parameter.
See the Android Docs for more information on the setup changes.