Updated 11 October 2021
In this blog, we will learn about SSL Commerz payment gateway integration in android with SDK approach.
A payment gateway is a merchant service provided by an e-commerce application service provider. Which authorizes card or direct payment processing.
If you are planing on the integration of the SSL Commerz payment gateway by using SDK then this blog will help you to do so.
Download SSL Commerz SDK
Adding SSL Commerz SDK
1 |
include ':sslCommerzSdk' |
1 |
implementation project(':sslCommerzSdk') |
After successfully adding the SDK initialize the payment, SSLCommerzInitialization class of SSL Commerz SDK is used to initialize payment. So you have to call its constructor like:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
fun processPayment() { val sslCommerzInitialization = SSLCommerzInitialization(your store ID, your store Password, Amount To Pay, SSLCCurrencyType.BDT, //Currency type Transaction Id, Product category, SSLCSdkType.LIVE //SDK type for live payment use SSLCSdkType.TESTBOX for test mode ) IntegrateSSLCommerz .getInstance(this) .addSSLCommerzInitialization(sslCommerzInitialization) .buildApiCall(this) } |
Inside store Id field add valid store Id and password only because if you pass invalid key here payment UI will not initialize.
It’s time to handle the payment callback. For this, implement the listener as :
1 |
class CheckoutActivity : BaseActivity(),SSLCTransactionResponseListener{ } |
For any error, success, and failure, we have to override the following method of implemented interface inside our activity. which will help you to handle the success and failure result.
1 2 3 4 5 6 7 8 9 10 11 |
override fun transactionFail(p0: String?) { // handle failure case } override fun merchantValidationError(p0: String?) { // handle error case } override fun transactionSuccess(p0: SSLCTransactionInfoModel?) { // handle success case } |
Here p0 is the SSLCTransactionInfoModel object from which you can get the payment details like:
1 |
p0?.tranId //geting transaction id |
In this blog, you have learned about the implementation of the SSL Commerz payment gateway integration by using SDK.
For more documentation regarding the SSL Commerz payment gateway follow the link
Thanks for reading this blog. You can also check other blogs from here.
If you have more details or questions, you can reply to the received confirmation email.
Back to Home
Be the first to comment.