v3.0.0
Changes
Use of ServiceLocator
- The use of the
ServiceLocatorclass has been dropped in order to simplify the development process of the SDK. - The
yoti-sdk-apiandyoti-sdk-implmodules have been merged, with theyoti-sdk-implmodule 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