Skip to content

Releases: aplazame/ios-sdk

v1.0.1

16 Apr 12:55
Compare
Choose a tag to compare
  • [FIX] Compatibility with last iPhone models.

v1.0.0

21 Feb 10:58
9d01446
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

var checkout: [String: Any] = []
paymentContext.requestCheckout(from: self, checkout: checkout, delegate: self, onPresent: {
})

After

var checkout_id: String = "Aplazame ID from Aplazame's server"
paymentContext.requestCheckout(from: self, checkout: checkout_id, delegate: self, onPresent: {
})

v0.4.1

21 Feb 10:25
c2eda62
Compare
Choose a tag to compare

[ADD] Improve platform detection

v0.3.1

07 Mar 15:54
Compare
Choose a tag to compare

Merchant and Meta models are public

v0.3.0

13 Feb 09:33
Compare
Choose a tag to compare

First public release