Releases: aplazame/android-sdk
Releases · aplazame/android-sdk
v2.0.0
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
v1.0.3
v1.0.2
[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);
}