Releases: FinTecSystems/xs2a-ios
Releases · FinTecSystems/xs2a-ios
1.14.2
1.14.1
1.14.0
Beta: App-to-App Redirection Feature. This is a beta feature. Instructions:
- During initialisation as part of
XS2AiOS.Configuration
, provide aredirectDeepLink
URL where the bank shall redirect to after successful authentication. This URL should open your host app when Safari redirects to it. - On a phone with a supported banking app installed, start a flow for said bank.
- During the session there should be a step where you will get a
redirect
element, which is a button that will prompt you if you want to either open the website or the app for authentication. - If you choose the latter, the banking app should open. Complete the steps there.
- After the banking app is done, it should first redirect to Tink Germany's URL, which then redirect to the
redirectDeepLink
you provided in step 1. Make sure your host app opens (Safari should show a prompt offering to open the host app) - Now to advance the session, call
submitRedirect()
method ofXS2AViewController
.
1.13.0
- Feature: Offer the option to expose a
UIView
instead of defaultUIScrollView
to allow for more customization, see Readme for infos.(#23). (Thanks @ireshetnikov24)
1.12.1
- Fixed a bug, where the selected account during a multi-selection screen was ignored and always all accounts where selected
1.12.0
1.11.0
1.10.0
Two new public methods have been introduced on the XS2AViewController
(6761096):
isLogin()
: Will returntrue
orfalse
depending on whether the session is on the first login screen.isBankSearch()
: Will returntrue
orfalse
depending on whether the session is on the bank search screen.
More info can be found in the readme.
1.9.5
- The
LoadingStateProvider
protocol was extended with theLoadingView
, which allows further customization of the loading animation. PR (299bfc1) - It is now possible to implement a custom back button and hide the default button inside the form. More info in the readme. PR (299bfc1)
Thanks again to @ziper1 for the PRs 👍.