Skip to content

v2.0.0

Latest
Compare
Choose a tag to compare
@Maks3w Maks3w released this 21 Feb 10:20
· 7 commits to master since this release
ffdb57e

This version aims to reduce the amount of work performed by the mobile app. This should reduce the number of bugfix deploys to Google Play marketplace.

For to achieve this target we have change the way of Checkout is created. Now the checkout payload is exchanged by an Aplazame ID on merchant server outside of the app.

Before

Checkout checkout = createCheckout();
AplazameSDK.setCheckout(checkout);

After

String checkout_id = "Aplazame ID from Aplazame's server";
AplazameSDK.setCheckout(checkout);