Releases: aplazame/ios-sdk
Releases · aplazame/ios-sdk
v1.0.1
v1.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
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: {
})