Skip to content

Releases: aplazame/android-sdk

v2.0.0

21 Feb 10:20
ffdb57e
Compare
Choose a tag to compare

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);

v1.0.4

21 Feb 09:13
977e454
Compare
Choose a tag to compare

[ADD] Improve platform detection

v1.0.3

23 Jan 14:36
Compare
Choose a tag to compare

[FIX] Keyboard overlap

v1.0.2

20 Apr 10:14
d77c6cc
Compare
Choose a tag to compare

[FIX] Files upload

Add Aplazame SDK in onRequestPermissionsResult

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent intent) {
    super.onActivityResult(requestCode, resultCode, intent);
    AplazameSDK.onRequestPermissionsResult(this, requestCode, grantResults);
}

v1.0.1

16 Feb 22:21
Compare
Choose a tag to compare
  • [FIX] checkAvailability amount format

v1.0.0

13 Feb 09:32
Compare
Choose a tag to compare

First release