Skip to content

v3.0.0

Choose a tag to compare

@MrBurtyyy MrBurtyyy released this 01 Mar 15:25
· 344 commits to master since this release

Changes

Use of ServiceLocator

  • The use of the ServiceLocator class has been dropped in order to simplify the development process of the SDK.
  • The yoti-sdk-api and yoti-sdk-impl modules have been merged, with the yoti-sdk-impl module then being removed.

Builders

All builders have now been in-lined into their respective classes, and the use of factories has been dropped (they are no longer neccessary due to the removal of the use of ServiceLocator). Example below:

YotiClient client = YotiClientBuilder.newInstance().build() // OLD

YotiClient client = YotiClient.builder().build() // NEW