Skip to content

Beta Version 0.3.0

Compare
Choose a tag to compare
@zsweigart zsweigart released this 06 Dec 01:17
· 211 commits to master since this release
938cd57

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.

We've also fixed issues:
#7
#8
#10