Merchant Information Configuration
For each of the SDKs, there are different parameters needed to configure the SDK for it to work.
/*
You will need the following details
1. Merchant id
2. Domain id
3. Client Id
4. Client Secret
*/
final Merchant merchant = new Merchant(merchantId, domain);
mobPay = MobPay.getInstance(MainActivity.this, clientId, clientSecret, config);
Create a instance of the merchant class with the following details
1. Merchant id
2. Domain id
Merchant merchant = Merchant("ISWKEN0001", "ISWKE");
Updated almost 3 years ago