3.2.5
New features
- RUX events are now typed (https://plaid.com/docs/link/web/#link-web-onevent-MATCHED-SELECT-INSTITUTION)
Fixes
- Misc stability fixes
⚠️ Known Issues
- This version of the SDK uses an external dependency that doesn't have a debug artifact published and consequently Gradle`s variant-aware dependency resolution isn't able to resolve a variant that matches the debug build type. This results in the following error:
Could not resolve `pro.streem.pbandk:pbandk-runtime-android:0.10.0-beta.2.`
Required by:
project :app > com.plaid.link:sdk-core:3.2.5
And can be resolved by adding the following to your build.gradle file:
android {
...
buildTypes {
debug {
matchingFallbacks += "release"
}
}
}