Skip to content

Releases: plaid/plaid-link-android

Beta Version 0.2.1

29 Oct 20:16
5df5bd0
Compare
Choose a tag to compare

Hot fix for the manual micro-deposit flow. The institutionId and institutionName fields on the LinkConnectionMetadata result for a successful flow will now be nullable.

Beta Version 0.2.0

25 Oct 18:15
5df5bd0
Compare
Choose a tag to compare

This release updates the link event listener api so it is no longer required to be a serializable object passed in as part of the link configuration object. Instead you can add a link event listener directly to the Plaid class! This is a breaking change from 0.1.5.

Plaid.setLinkEventListener(linkEventListener = LinkEventListener {
        Log.i("Event", it.toString())
      })

Beta Version 0.1.5

23 Oct 22:07
d9dba85
Compare
Choose a tag to compare

This release fixes a bug with 0.1.4 which had a missing dependency on com.google.android.material:material. It also adds support for oauth and app to app flows (docs will be coming soon on https://plaid.com/docs/link/android/).

Beta Version 0.1.4

16 Sep 19:02
0e48c4b
Compare
Choose a tag to compare

This minor release to the beta version of the Plaid Link SDK adds a new method for opening link so you don't have to build your own intent. Simple call Plaid.open as shown below:

Plaid.openLink(
        this,
        LinkConfiguration(
          clientName = "Test App",
          products = listOf(PlaidProduct.TRANSACTIONS),
          ...
        ),
        LINK_REQUEST_CODE
      )