Skip to content

Releases: tink-ab/tink-link-android

Tink Link Android 2.7.0

24 May 14:52
93e7b88
Compare
Choose a tag to compare
  • Native Android Toolbar was removed.
  • Hence toolbar attributes of TinkAppearanceCompose.ThemeAttributes was reduced.

Tink Link Android 2.6.0

10 Apr 15:29
cc493ee
Compare
Choose a tag to compare

Release 2.5.0

04 Apr 12:38
0259429
Compare
Choose a tag to compare
  • Tink.AccountAggregation.refreshCredentials() flow extended with locale parameter.

Release 2.4.0

26 Oct 10:22
2b714b8
Compare
Choose a tag to compare
Merge pull request #57 from tink-ab/release-2.4.0

BANKX-444 - Release 2.4.0

Tink Link Android 2.3.0

29 Aug 08:31
Compare
Choose a tag to compare

Deprecated Market Enum: The Market enum has been deprecated and replaced with a more flexible String value.

Introduction of BaseDomain Class: The Configuration class now includes the mandatory BaseDomain parameter. This parameter is used to specify the Tink Link API base domain for both the production and custom environments. There are two distinct available options:

  1. European Base Domain (BaseDomain.EU): This corresponds to the European production environment.
  2. Custom Base Domain (BaseDomain.Custom("<your_custom_base_domain>")): This allows configuration for a custom base domain, which can be useful for sandbox environments or other specific requirements.

Migration Guide:

  • Market Migration:

    • For each occurrence of Market("<market_code>"), replace it with "<market_code>" as a String. Android Studio will prompt a warning and offer a fix to address the deprecation and adopt the new correct String value.
  • BaseDomain Migration:

    • For each occurrence of Configuration constructor, add the new BaseDomain parameter to the constructor. To configure Tink Link for the European production environment, append BaseDomain.EU to the constructor, like so: Configuration("<client_id>", "<redirect_uri>", BaseDomain.EU). Alternatively, for sandbox environments, use BaseDomain.Custom("<your_custom_base_domain>").
    • Android Studio will highlight deprecated code and suggest an action to replace it with the correct Configuration constructor, automatically adding BaseDomain.EU as the default environment.

Tink Link Android 2.2.0

02 Jun 12:13
Compare
Choose a tag to compare
  • Added support for account aggregation product.

Tink Link Android 2.1.1

26 May 13:18
Compare
Choose a tag to compare
  • Fixed an issue with obfuscation that made the TinkError data model and its internal parameters not visible.

Tink Link Android 2.1.0

08 May 13:06
Compare
Choose a tag to compare
  • Added an error callback (user_cancelled) when the user terminates Tink Link with the close button.
  • Added javadoc and source code for all the public classes and methods.
  • Added a log message for Tink Link version when the library is initialised.

Tink Link Android 2.0.0

29 Mar 12:26
215f07a
Compare
Choose a tag to compare
  • Removed support for Account Aggregation product.
    • Users of this product are encouraged to migrate to the Transactions product instead, or contact their account manager for more information about products suitable for their needs.
  • Added full product coverage of Tink’s products:
    • Account Check
    • Expense Check
    • Income Check
    • Payments
    • Reports
    • Risk Insights
    • Transactions
  • Improved error handling and error responses.
  • Updated theming and customisation options, now available through Tink Console.
  • Minimum required target API level 23 (Android 6).

Tink Link Android 2.0.0 Release Candidate 1

27 Feb 16:12
20473d9
Compare
Choose a tag to compare

This is a major update with breaking changes

Please read the README file for how to install and integrate Tink Link 2.0.0 in your application.

For this release candidate, always refer to the branch 2.0.0 on this repo.