Releases: plaid/plaid-link-android
Beta Version 0.2.1
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
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
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
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
)