Thanks DonManfred for the prompt reply.
I had checjed the above AAR file doesn't download.
As per your suggestion I serached for a post from erel for using JavaObject
Do I have to go like this.
Dim PG As JavaObject
PG.InitializeStatic("com.payumoney.sdkui:plug-n-play:1.6.0")
PG.RunMethod("start", Array(PG, "your app secret"))
As per their documentation below are the params to be passed.
PayUmoneySdkInitializer.PaymentParam.Builder builder = new
PayUmoneySdkInitializer.PaymentParam.Builder();
builder.setAmount(amount) // Payment amount
.setTxnId(txnId) // Transaction ID
.setPhone(phone) // User Phone number
.setProductName(productName) // Product Name or description
.setFirstName(firstName)
I am wondering where to pass the key and the salt.
Do I make key value pair while invoking start method.
Pls advice.