Releases: edfapay/edfa-pg-android-sdk
Releases · edfapay/edfa-pg-android-sdk
2.1.6
2.1.5
Added Feature to Pay with Sadad Number
EdfaSadadPay()
.setOrderId("Unique order_id as string")
.setOrderDescription("Description of the order")
.setOrderAmount(25.0)
.setCustomerName("Merchant customer name here")
.setMobileNumber("Merchant customer mobile number here in format: 966500409598")
.onSuccess { response ->
Log.i("Transaction Success:", response.toString())
Toast.makeText(this, "Transaction Success", Toast.LENGTH_LONG).show()
}
.onFailure { response, exception ->
Log.e("Transaction Failed:", response?.message ?: exception.message ?: "STWR")
Toast.makeText(this, "Transaction Failure", Toast.LENGTH_LONG).show()
}
.initialize { errors ->
// if errors is empty then transaction begins successful else error while initialize
Log.e("Initialize errors", errors.toString())
}Full Changelog: 2.1.4...2.1.5
2.1.4
2.1.3
2.1.2
Extend the timeout of http
Full Changelog: 2.1.1...2.1.2
2.1.1
What's Changed
- update bottom sheet height
- Update consumer rules by @edfapay in #5
- Master fix by @edfapay in #6
- Issue relating to OS 15 by @kashif-edfapay in #7
- merchant and password converted to string by @kashif-edfapay in #8
- Change Report – Gradle & Dependencies Updates by @kashif-edfapay in #9
New Contributors
- @edfapay made their first contribution in #5
- @kashif-edfapay made their first contribution in #7
Full Changelog: 2.0.9...2.1.1
2.1.0
What's Changed
- Update consumer rules by @edfapay in #5
- Master fix by @edfapay in #6
- Issue relating to OS 15 by @kashif-edfapay in #7
- merchant and password converted to string by @kashif-edfapay in #8
- Change Report – Gradle & Dependencies Updates by @kashif-edfapay in #9
New Contributors
- @edfapay made their first contribution in #5
- @kashif-edfapay made their first contribution in #7
Full Changelog: 2.0.9...2.1.0
2.0.9
Full Changelog: 2.0.7...2.0.9
2.0.8
Handled the PENDING status for the Auth transaction
Full Changelog: 2.0.7...2.0.8
2.0.7
- Added Auth to sale transaction
-
Added to below
EdfaCardPay
EdfaCardPay() .setAuth(true/false) ...
EdfaPayWithCard
EdfaPayWithCardDetails(context) .setAuth(true/false) ...
-
Calling setAuth with a true argument will perform the Auth transaction
The user can perform Capture or Void on this Auth transaction
Full Changelog: 2.0.6...2.0.7