Skip to content

3.2.5

Compare
Choose a tag to compare
@amytang0 amytang0 released this 17 Mar 20:21
· 89 commits to master since this release
742dca3

New features

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"
        }
    }
}